From 04d2a53bcce97c9e4bd85eb92bd313cf234b6b3f Mon Sep 17 00:00:00 2001 From: Jan Speller Date: Mon, 23 May 2022 09:09:04 +0000 Subject: [PATCH] Label images to show them in repository --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 340d73b..b9ee31a 100755 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ RUN apk add git && \ FROM python:alpine AS client LABEL maintainer="bastian@schroll-software.de" +LABEL org.opencontainers.image.source=https://github.com/janspeller/BW3-Core # for RTL for MM RUN apk add libusb-dev libpulse @@ -34,6 +35,9 @@ WORKDIR /opt/boswatch CMD python3 /opt/boswatch/bw_client.py -c client.yaml FROM python:alpine AS server +LABEL maintainer="bastian@schroll-software.de"\ +LABEL org.opencontainers.image.source=https://github.com/janspeller/BW3-Core + RUN pip3 install pyyaml COPY --from=boswatch /opt/boswatch/ /opt/boswatch/ WORKDIR /opt/boswatch