goshorly/Dockerfile
2022-01-06 18:09:37 +01:00

15 lines
No EOL
316 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
RUN ./build-ci.sh
FROM scratch as production
WORKDIR /goshorly
COPY --from=builder /go/src/git.ucode.space/goshorly/app /goshorly/app
CMD ["./app"]