goshorly/Dockerfile
2022-01-05 23:44:11 +01:00

14 lines
No EOL
315 B
Docker

FROM golang:alpine as builder
RUN apk add --no-cache gcc libgo git
WORKDIR /go/src/git.ucode.space/goshorly
COPY . .
RUN go get -d -v ./...
RUN chmod +x build-ci.sh && ./build-ci.sh
FROM scratch as production
WORKDIR /goshorly
COPY --from=builder /go/src/git.ucode.space/goshorly/app /goshorly/app
CMD ["./app"]