This repository has been archived on 2024-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
scrabblego/Dockerfile

12 lines
195 B
Docker
Raw Normal View History

2019-10-10 12:36:44 +00:00
# Would love to use scratch but we need those CA certs
FROM golang:alpine
ENV GOPROXY https://modules.fromouter.space
ENV GO111MODULE=on
WORKDIR /app
2019-10-10 13:20:37 +00:00
ADD *.go .
ADD go.* .
2019-10-10 12:36:44 +00:00
ENTRYPOINT go run .