-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (23 loc) · 789 Bytes
/
Dockerfile
File metadata and controls
28 lines (23 loc) · 789 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
# Build the manager binary
FROM registry.ci.openshift.org/stolostron/builder:go1.25-linux AS builder
WORKDIR /workspace
# Copy the source files
COPY main.go main.go
COPY go.mod go.mod
COPY go.sum go.sum
COPY api/. api/
COPY config/. config/
COPY controllers/ controllers/
COPY pkg/ pkg/
# Copy the go source
RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go mod vendor
RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go mod tidy
# Build
RUN CGO_ENABLED=1 GOOS=linux go build -a -o manager main.go
# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
WORKDIR /
COPY --from=builder /workspace/manager .
USER 65532:65532
ENTRYPOINT ["/manager"]