From 4e82eab9f448df1dab2b37e8e8401d7056f8520f Mon Sep 17 00:00:00 2001 From: Eduard Veit Date: Mon, 1 Nov 2021 17:36:49 +0100 Subject: [PATCH] =?UTF-8?q?doc:=20=F0=9F=93=9D=20add=20labels=20to=20Docke?= =?UTF-8?q?rfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa44699..a54c80b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM alpine:latest + RUN \ apk update \ && \ @@ -7,6 +8,13 @@ bash \ curl \ jq \ bind-tools + WORKDIR /usr/src/app + COPY . . -ENTRYPOINT ["/bin/bash", "/usr/src/app/dynb.sh"] \ No newline at end of file + +ENTRYPOINT ["/bin/bash", "/usr/src/app/dynb.sh"] + +LABEL org.opencontainers.image.source="https://github.com/EV21/dynb" +LABEL org.opencontainers.image.description="DynB - dynamic DNS update client." +LABEL org.opencontainers.image.licenses="MIT"