-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (24 loc) · 891 Bytes
/
Dockerfile
File metadata and controls
33 lines (24 loc) · 891 Bytes
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
# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.26 AS builder
ARG TARGETARCH
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 . .
# Build
RUN GOOS=linux GOARCH=$TARGETARCH make build/helm-operator
# Final image.
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7
ENV HOME=/opt/helm \
USER_NAME=helm \
USER_UID=1001
RUN echo "${USER_NAME}:x:${USER_UID}:0:${USER_NAME} user:${HOME}:/sbin/nologin" >> /etc/passwd
WORKDIR ${HOME}
USER ${USER_UID}
COPY --from=builder /workspace/build/helm-operator /usr/local/bin/helm-operator
ENTRYPOINT ["/usr/local/bin/helm-operator", "run", "--watches-file=./watches.yaml"]