diff --git a/Dockerfile b/Dockerfile index d9f593c..5fd5adb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,6 +41,10 @@ ENV VALIS_DB_REMOTE=True # Stage 3: Build stage (inherits from dev-stage) FROM dev-stage as build-stage +# Set a label +LABEL org.opencontainers.image.source https://github.com/sdss/valis +LABEL org.opencontainers.image.description "valis production image" + # Expose the port EXPOSE 8000 diff --git a/Dockerfile.dev b/Dockerfile.dev index fe68148..f04f9ad 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -40,6 +40,7 @@ FROM dev-stage as build-stage # Set a label LABEL org.opencontainers.image.source https://github.com/sdss/valis +LABEL org.opencontainers.image.description "valis development image" # Expose port 8000 EXPOSE 8000