goshorly/Dockerfile

9 lines
125 B
Text
Raw Normal View History

2021-12-07 15:49:58 +01:00
FROM golang:latest
2021-12-07 16:15:19 +01:00
WORKDIR /go/src/git.ucode.space/goshortly
2021-12-07 15:49:58 +01:00
2021-12-07 16:15:19 +01:00
COPY . .
2021-12-07 15:49:58 +01:00
2021-12-07 16:15:19 +01:00
RUN go get -d -v ./...
2021-12-07 15:49:58 +01:00
2021-12-07 16:15:19 +01:00
CMD ["go", "run", "main.go"]