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
Hamcha 645cf6938a
All checks were successful
continuous-integration/drone/push Build is passing
Kill me now
2019-10-10 15:29:02 +02:00

12 lines
No EOL
197 B
Docker

# 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
ADD *.go ./
ADD go.* ./
ENTRYPOINT go run .