-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDockerfile
48 lines (38 loc) · 1.35 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright (c) 2021, and 2022 Cisco and/or its affiliates. All rights reserved.
ARG GID=1000
ARG UID=1000
# Build the manager binary
FROM golang:1.18.0 as builder
ARG GITHUB_ACCESS_TOKEN
ARG GID
ARG UID
# Create user and group
RUN groupadd -g ${GID} appgroup && \
useradd -l -u ${UID} --gid appgroup appuser
ARG GOPROXY="https://proxy.golang.org,direct"
ENV GOPROXY="${GOPROXY}"
ENV GOPRIVATE='github.com/cisco-open,github.com/banzaicloud'
ENV GONOPROXY='gopkg.in,go.uber.org'
ENV GOFLAGS="-mod=readonly"
WORKDIR /workspace/
# Copy the Go Modules manifests
COPY ./go.mod /workspace/
COPY ./go.sum /workspace/
# Copy the API Go Modules manifests
COPY api/go.mod api/go.mod
COPY api/go.sum api/go.sum
RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/go/pkg/mod go mod download
COPY ./ /workspace/
# Build
RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/go/pkg/mod CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} make binary
# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM gcr.io/distroless/static:nonroot
ARG GID
ARG UID
WORKDIR /
COPY --from=builder /workspace/bin/manager .
COPY --from=builder /etc/passwd /etc/passwd
COPY --from=builder /etc/group /etc/group
USER ${UID}:${GID}
ENTRYPOINT ["/manager"]