From 5aa1a35b8f552a0b9ae5577e80e8ede29ed00f7e Mon Sep 17 00:00:00 2001 From: scito Date: Sat, 31 Dec 2022 11:23:44 +0100 Subject: [PATCH] add licence label to docker images --- Dockerfile | 1 + Dockerfile_only_txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2912776..377f226 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,3 +20,4 @@ WORKDIR /files ENTRYPOINT ["python", "/extract/src/extract_otp_secrets.py"] LABEL org.opencontainers.image.source https://github.com/scito/extract_otp_secrets +LABEL org.opencontainers.image.license GPL-3.0+ diff --git a/Dockerfile_only_txt b/Dockerfile_only_txt index fa92566..061200e 100644 --- a/Dockerfile_only_txt +++ b/Dockerfile_only_txt @@ -11,7 +11,7 @@ COPY . . ARG RUN_TESTS=true -RUN apk add --no-cache nano zlib jpeg \ +RUN apk add --no-cache zlib jpeg \ && echo "Arch: $(apk --print-arch)" \ && if [[ "$(apk --print-arch)" == "aarch64" ]]; then apk add --no-cache --virtual .build-deps gcc libc-dev python3-dev py3-setuptools zlib-dev jpeg-dev; fi \ && pip install --no-cache-dir protobuf qrcode Pillow \ @@ -23,3 +23,4 @@ WORKDIR /files ENTRYPOINT ["python", "/extract/src/extract_otp_secrets.py"] LABEL org.opencontainers.image.source https://github.com/scito/extract_otp_secrets +LABEL org.opencontainers.image.license GPL-3.0+