This commit is contained in:
Phil 2021-12-07 16:21:49 +01:00
parent 59344a8a67
commit 2b928aa111

View file

@ -1,9 +1,11 @@
FROM golang:latest
FROM golang:alpine
WORKDIR /go/src/git.ucode.space/goshortly
COPY . .
RUN apk add gcc libgo
RUN go get -d -v ./...
CMD ["go", "run", "main.go"]