There was an error while loading. Please reload this page.
1 parent 8f90975 commit b8b77a7Copy full SHA for b8b77a7
1 file changed
hack/create-e2e-accounts/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.25 AS builder
+FROM golang:1.26.5 AS builder
2
3
WORKDIR /app
4
COPY . .
@@ -7,6 +7,10 @@ RUN CGO_ENABLED=0 go build -o create-e2e-accounts .
7
8
FROM gcr.io/distroless/base
9
10
+# Links the ghcr.io package to this repository, so packages created by the
11
+# image-build workflow automatically grant the repo's GITHUB_TOKEN write access.
12
+LABEL org.opencontainers.image.source=https://github.com/bucketeer-io/bucketeer
13
+
14
COPY --from=builder /app/create-e2e-accounts /usr/local/bin/
15
16
ENTRYPOINT ["create-e2e-accounts"]
0 commit comments