Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Golang-alpine.Dockerfile « Dockerfile « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0287315219b526cda610915b29c6238b040e859c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM golang:1.8-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"]