goshorly/Dockerfile

9 lines
125 B
Text
Raw Normal View History

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