-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathDockerfile
More file actions
executable file
·56 lines (42 loc) · 1.74 KB
/
Dockerfile
File metadata and controls
executable file
·56 lines (42 loc) · 1.74 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
52
53
54
55
56
ARG BASE_IMAGE=registry.access.redhat.com/ubi9-micro:latest
FROM registry.access.redhat.com/ubi9/go-toolset:1.25 AS builder
ARG GIT_SHA=unknown
ARG GIT_DIRTY=""
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
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 . .
# CGO_ENABLED=0 produces a static binary. The default ubi9-micro runtime
# supports both static and dynamically linked binaries.
# For FIPS-compliant builds, use CGO_ENABLED=1 + GOEXPERIMENT=boringcrypto.
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 \
CGO_ENABLED=0 GOOS=linux \
GIT_SHA=${GIT_SHA} GIT_DIRTY=${GIT_DIRTY} BUILD_DATE=${BUILD_DATE} \
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/sentinel /app/sentinel
USER 65532:65532
EXPOSE 8080
ENTRYPOINT ["/app/sentinel"]
CMD ["serve"]
ARG APP_VERSION="0.0.0-dev"
LABEL name="hyperfleet-sentinel" \
vendor="Red Hat" \
version="${APP_VERSION}" \
summary="HyperFleet Sentinel - Resource polling and event publishing service" \
description="Watches HyperFleet API resources and publishes reconciliation events to message brokers"