gitlab-org--gitlab-foss/vendor/Dockerfile/Golang-alpine.Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
291 B
Docker
Raw Normal View History

FROM golang:1.15-alpine AS builder
WORKDIR /usr/src/app
COPY . .
RUN go-wrapper download
RUN go build -v
FROM alpine:3.5
# We'll likely need to add SSL root certificates
RUN apk --no-cache add ca-certificates
WORKDIR /usr/local/bin
COPY --from=builder /usr/src/app/app .
CMD ["./app"]