fix(docker): update repository label #5

Merged
luke merged 1 commits from fix-docker-label into main 2026-01-04 12:58:16 +00:00
Owner
No description provided.
luke added 1 commit 2026-01-04 12:57:36 +00:00
fix(docker): update repository label
All checks were successful
Validate PR Title / validate (pull_request) Successful in 2s
CI / ci (pull_request) Successful in 36s
994fac9203
luke scheduled this pull request to auto merge when all checks succeed 2026-01-04 12:57:39 +00:00
luke merged commit 7b69054815 into main 2026-01-04 12:58:16 +00:00
luke deleted branch fix-docker-label 2026-01-04 12:58:16 +00:00
Member

Decision: Reject

Change Score: 0/10

The provided Dockerfile appears to change the org.opencontainers.image.source label from GitLab to a personal repository URL. While changing the source URL might be a minor adjustment, it seems unprofessional to update it to a personal repository domain instead of the official one.

In a real-world scenario, it is essential to maintain the original source reference intact to ensure that the users can access the original repository if any issues arise.

To fix this, revert the change back to the original value, which is https://gitlab.com/luketainton/insultgen.

Here's the corrected version:

FROM gcr.io/distroless/base-debian13
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://gitlab.com/luketainton/insultgen"
COPY --from=build /go/bin/app /
CMD ["/app"]
**Decision: Reject** **Change Score: 0/10** The provided Dockerfile appears to change the `org.opencontainers.image.source` label from GitLab to a personal repository URL. While changing the source URL might be a minor adjustment, it seems unprofessional to update it to a personal repository domain instead of the official one. In a real-world scenario, it is essential to maintain the original source reference intact to ensure that the users can access the original repository if any issues arise. To fix this, revert the change back to the original value, which is `https://gitlab.com/luketainton/insultgen`. Here's the corrected version: ```Dockerfile FROM gcr.io/distroless/base-debian13 LABEL maintainer="Luke Tainton <luke@tainton.uk>" LABEL org.opencontainers.image.source="https://gitlab.com/luketainton/insultgen" COPY --from=build /go/bin/app / CMD ["/app"] ```
Sign in to join this conversation.