From e7233766635e0446a622f7a170962bb88afd3e59 Mon Sep 17 00:00:00 2001 From: Thibault <1619359+ThibaultNocchi@users.noreply.github.com> Date: Wed, 25 Feb 2026 14:50:41 +0100 Subject: [PATCH] docs(docker): add source repo label Added image labels for source tracking. --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 632525e..be936df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,9 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o immich-stack ./cmd/... # Use a smaller image for the final container FROM alpine:latest +# Apply image labels +LABEL org.opencontainers.image.source="https://github.com/Majorfi/immich-stack" + WORKDIR /app # Install bash for the shell script @@ -34,4 +37,4 @@ RUN adduser -D -g '' appuser USER appuser # Set the entrypoint -ENTRYPOINT ["./immich-stack"] \ No newline at end of file +ENTRYPOINT ["./immich-stack"]