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"