From f14faaa030b35cb048c836a32beaee7b05f87f15 Mon Sep 17 00:00:00 2001 From: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> Date: Wed, 12 Jun 2024 15:28:18 +0200 Subject: [PATCH] Add image source to docker file Signed-off-by: Nicolas Drebenstedt <897972+cutoffthetop@users.noreply.github.com> --- mex-{{ cookiecutter.project_name }}/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/mex-{{ cookiecutter.project_name }}/Dockerfile b/mex-{{ cookiecutter.project_name }}/Dockerfile index 8529491..69814a1 100644 --- a/mex-{{ cookiecutter.project_name }}/Dockerfile +++ b/mex-{{ cookiecutter.project_name }}/Dockerfile @@ -5,6 +5,7 @@ FROM python:3.11 as base LABEL org.opencontainers.image.authors="RKI MEx Team " LABEL org.opencontainers.image.description="{{ cookiecutter.short_summary }}" LABEL org.opencontainers.image.licenses="MIT" +LABEL org.opencontainers.image.source = "https://github.com/robert-koch-institut/mex-{{ cookiecutter.project_name }}" ENV PYTHONUNBUFFERED=1 ENV PYTHONOPTIMIZE=1