-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (24 loc) · 777 Bytes
/
Dockerfile
File metadata and controls
32 lines (24 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
ARG PKGNAME
# Build the manager binary
FROM golang:1.17.2-alpine as builder
ENV GOPROXY https://proxy.golang.org,direct
ENV GOSUMDB sum.golang.org
ARG LDFLAGS
ARG PKGNAME
WORKDIR /go/src/github.com/gocrane/fadvisor
# Copy the Go Modules manifests
COPY go.mod go.mod
COPY go.sum go.sum
COPY pkg pkg/
COPY cmd cmd/
COPY staging staging/
# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN go mod download
RUN apk add gcc libc-dev
# Build
RUN go build -ldflags="${LDFLAGS}" -a -o ${PKGNAME} /go/src/github.com/gocrane/fadvisor/cmd/${PKGNAME}/main.go
FROM alpine:3.13.5
WORKDIR /
ARG PKGNAME
COPY --from=builder /go/src/github.com/gocrane/fadvisor/${PKGNAME} .