diff --git a/CHANGES.rst b/CHANGES.rst index ff904445..3122c2eb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,7 @@ Changes Version 0.9.2 (UNRELEASED) -------------------------- +- Adds metadata labels to Dockerfile. - Changes CVMFS support to allow users to automatically mount any available repository. - Fixes container image building on the arm64 architecture. - Fixes the creation of Kubernetes jobs by retrying in case of error and by correctly handling the error after reaching the retry limit. diff --git a/Dockerfile b/Dockerfile index 81bb7dd9..34d4b103 100644 --- a/Dockerfile +++ b/Dockerfile @@ -124,3 +124,15 @@ EXPOSE 5000 # Run server CMD ["flask", "run", "-h", "0.0.0.0"] + +# Set image labels +LABEL org.opencontainers.image.authors="team@reanahub.io" +LABEL org.opencontainers.image.created="2023-12-12" +LABEL org.opencontainers.image.description="REANA reproducible analysis platform - job controller component" +LABEL org.opencontainers.image.documentation="https://reana-job-controller.readthedocs.io/" +LABEL org.opencontainers.image.licenses="MIT" +LABEL org.opencontainers.image.source="https://github.com/reanahub/reana-job-controller" +LABEL org.opencontainers.image.title="reana-job-controller" +LABEL org.opencontainers.image.url="https://github.com/reanahub/reana-job-controller" +LABEL org.opencontainers.image.vendor="reanahub" +LABEL org.opencontainers.image.version="0.9.2"