We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5377254 + e6d6b49 commit 86e5728Copy full SHA for 86e5728
Dockerfile
@@ -1,10 +1,11 @@
1
-FROM quay.io/app-sre/golang:1.18.5 AS builder
2
-WORKDIR /build
+FROM registry.access.redhat.com/ubi8/go-toolset:1.21.13-1.1727869850 as builder
+USER 0
3
+WORKDIR /workspace
4
COPY . .
5
RUN make test build
6
-FROM registry.access.redhat.com/ubi9-minimal:9.4
7
-COPY --from=builder /build/git-partition-sync-consumer /bin/git-partition-sync-consumer
+FROM registry.access.redhat.com/ubi9-minimal:9.4-1227.1726694542
8
+COPY --from=builder /workspace/git-partition-sync-consumer /bin/git-partition-sync-consumer
9
RUN microdnf update -y && microdnf install -y git
10
11
ENTRYPOINT [ "/bin/git-partition-sync-consumer" ]
0 commit comments