3
0
corteza/Dockerfile.crust-builder
2019-04-26 22:11:28 +02:00

10 lines
513 B
Docker

FROM golang:1.12-alpine
ENV CGO_ENABLED=0
RUN apk add --no-cache git make bash && \
echo "installing gomock" && go get -u github.com/golang/mock/gomock && \
echo "installing mockgen" && go get -u github.com/golang/mock/mockgen && \
echo "installing gotest" && go get -u github.com/rakyll/gotest && \
echo "installing goware/statik" && go get -u github.com/goware/statik && \
cd /usr/local/bin && wget https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh && chmod a+x wait-for-it.sh