-
Notifications
You must be signed in to change notification settings - Fork 64
/
Dockerfile
34 lines (25 loc) · 956 Bytes
/
Dockerfile
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
33
34
ARG PKGNAME
# Build the manager binary
FROM golang:1.17.2-alpine as builder
ARG LDFLAGS
ARG PKGNAME
WORKDIR /go/src/github.com/gocrane/crane-scheduler
# Add build deps
RUN apk add build-base
# Copy the Go Modules manifests
COPY go.mod go.mod
COPY go.sum go.sum
# 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 unset https_proxy HTTPS_PROXY HTTP_PROXY http_proxy && go mod download
# Copy the go source
COPY pkg pkg/
COPY cmd cmd/
# Build
RUN go build -ldflags="${LDFLAGS}" -a -o ${PKGNAME} /go/src/github.com/gocrane/crane-scheduler/cmd/${PKGNAME}/main.go
FROM alpine:3.13.5
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
RUN unset https_proxy HTTPS_PROXY HTTP_PROXY http_proxy && apk add -U tzdata
WORKDIR /
ARG PKGNAME
COPY --from=builder /go/src/github.com/gocrane/crane-scheduler/${PKGNAME} .