1
0
mirror of https://github.com/newnius/YAO-scheduler.git synced 2025-12-13 07:46:43 +00:00
Files
YAO-scheduler/Dockerfile.dev

12 lines
316 B
Docker
Raw Normal View History

2019-04-16 15:33:37 +08:00
FROM ubuntu:16.04
RUN apt update && \
2019-04-16 16:59:19 +08:00
apt install -y wget vim git gcc httpie dnsutils
2019-04-16 15:33:37 +08:00
RUN wget https://dl.google.com/go/go1.12.4.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go1.12.4.linux-amd64.tar.gz && \
rm go1.12.4.linux-amd64.tar.gz
2019-04-16 16:59:19 +08:00
ENV PATH $PATH:/usr/local/go/bin
RUN go get github.com/Shopify/sarama