From 9ced8d11c6506ade34b728d9a40d2d5d70ac7bcb Mon Sep 17 00:00:00 2001 From: danielvici123 <94993276+danielvici@users.noreply.github.com> Date: Tue, 9 Jun 2026 21:23:12 +0200 Subject: [PATCH] docker: Add OCI source label to Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0c9323c..f525fa6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,8 @@ RUN touch src/main.rs && cargo build --release # Final stage FROM alpine:latest +LABEL org.opencontainers.image.source="https://git.danielvici.com/danielvici123/dhl" + # Set environment variable to signal the app it's running in Docker ENV DOCKER_CONTAINER=true