-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDockerfile
More file actions
51 lines (38 loc) · 1.57 KB
/
Copy pathDockerfile
File metadata and controls
51 lines (38 loc) · 1.57 KB
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
49
50
51
ARG BASE_IMAGE=registry.access.redhat.com/ubi9-micro:latest
FROM registry.access.redhat.com/ubi9/go-toolset:9.8-1788409979 AS builder
ARG GIT_SHA=unknown
ARG BUILD_DATE=""
ARG APP_VERSION="0.0.0-dev"
# Install make as root (UBI9 go-toolset doesn't include it), then switch back to non-root.
USER root
RUN dnf install -y make && dnf clean all
WORKDIR /build
RUN chown 1001:0 /build
USER 1001
ENV GOBIN=/build/.gobin
RUN mkdir -p $GOBIN
ENV PATH="${GOBIN}:${PATH}"
COPY --chown=1001:0 go.mod go.sum ./
RUN --mount=type=cache,target=/opt/app-root/src/go/pkg/mod,uid=1001 \
go mod download
COPY --chown=1001:0 . .
RUN --mount=type=cache,target=/opt/app-root/src/go/pkg/mod,uid=1001 \
--mount=type=cache,target=/opt/app-root/src/.cache/go-build,uid=1001 \
GOOS=linux CGO_ENABLED=0 \
GIT_SHA=${GIT_SHA} BUILD_DATE=${BUILD_DATE} APP_VERSION=${APP_VERSION} \
make build
# Runtime stage
FROM ${BASE_IMAGE}
WORKDIR /app
# ubi9-micro doesn't include CA certificates; copy from builder for TLS (e.g. Google Pub/Sub)
COPY --from=builder /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
COPY --from=builder /build/bin/hyperfleet-applier /app/hyperfleet-applier
COPY --from=builder /build/LICENSE /licenses/LICENSE
USER 65532:65532
ENTRYPOINT ["/app/hyperfleet-applier"]
ARG APP_VERSION="0.0.0-dev"
LABEL name="hyperfleet-applier" \
vendor="Red Hat, Inc." \
version="${APP_VERSION}" \
summary="HyperFleet Applier" \
description="Controller responsible for Hyperfleet ReadDesires, ApplyDesires and DeleteDesires"