docker-athens/Dockerfile
Alexander Kiryukhin 05cb8b0129
Initial
2018-09-24 14:06:01 +03:00

7 lines
195 B
Docker

FROM golang:1.11-alpine
RUN apk update && \
apk upgrade && \
apk add git
RUN go get -u github.com/gomods/athens/cmd/proxy
COPY ./config.toml .
CMD ["proxy", "-config_file", "config.toml"]