2022-02-09 15:17:50 +08:00
ARG BASE_IMAGE
2021-04-28 15:29:08 +08:00
# Build the manager binary
2022-02-09 15:17:50 +08:00
FROM --platform=${BUILDPLATFORM:-linux/amd64} golang:1.17-alpine as builder
2021-04-28 15:29:08 +08:00
WORKDIR /workspace
# 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 go mod download
# Copy the go source
COPY cmd/core/main.go main.go
COPY cmd/core/main_e2e_test.go main_e2e_test.go
2021-08-11 23:05:10 +08:00
COPY cmd/apiserver/main.go cmd/apiserver/main.go
2021-04-28 15:29:08 +08:00
COPY cmd/ cmd/
COPY apis/ apis/
COPY pkg/ pkg/
COPY version/ version/
2022-02-17 13:58:48 +08:00
COPY references/ references/
2021-04-28 15:29:08 +08:00
# Build
ARG TARGETARCH
ARG VERSION
ARG GITVERSION
RUN apk add gcc musl-dev libc-dev ; \
2022-02-09 15:17:50 +08:00
GO111MODULE = on CGO_ENABLED = 0 GOOS = linux GOARCH = ${ TARGETARCH } \
go test -c -o manager-${ TARGETARCH } -cover -covermode= atomic -coverpkg ./... .
2021-04-28 15:29:08 +08:00
2021-08-11 23:05:10 +08:00
RUN GO111MODULE = on CGO_ENABLED = 0 GOOS = linux GOARCH = ${ TARGETARCH } \
go build -a -ldflags " -s -w -X github.com/oam-dev/kubevela/version.VelaVersion= ${ VERSION :- undefined } -X github.com/oam-dev/kubevela/version.GitRevision= ${ GITVERSION :- undefined } " \
-o apiserver-${ TARGETARCH } cmd/apiserver/main.go
2021-04-28 15:29:08 +08:00
# Use alpine as base image due to the discussion in issue #1448
# You can replace distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
# Overwrite `BASE_IMAGE` by passing `--build-arg=BASE_IMAGE=gcr.io/distroless/static:nonroot`
2022-02-09 15:17:50 +08:00
FROM ${BASE_IMAGE:-alpine:3.15}
2022-05-26 10:27:31 +08:00
# This is required by daemon connecting with cri
2022-02-09 15:17:50 +08:00
RUN apk add --no-cache ca-certificates bash expat
2021-04-28 15:29:08 +08:00
WORKDIR /
ARG TARGETARCH
COPY --from= builder /workspace/manager-${ TARGETARCH } /usr/local/bin/manager
2021-08-11 23:05:10 +08:00
COPY --from= builder /workspace/apiserver-${ TARGETARCH } /usr/local/bin/apiserver
2021-04-28 15:29:08 +08:00
COPY entrypoint.sh /usr/local/bin/
VOLUME [ "/workspace/data" ]
ENTRYPOINT [ "entrypoint.sh" ]
CMD [ "manager" ]