1
0
mirror of https://github.com/EV21/dynb.git synced 2025-12-26 16:39:32 +01:00

doc: 📝 add labels to Dockerfile

This commit is contained in:
2021-11-01 17:36:49 +01:00
parent 6eae43002f
commit d2b6748d36

View File

@@ -1,4 +1,5 @@
FROM alpine:latest FROM alpine:latest
RUN \ RUN \
apk update \ apk update \
&& \ && \
@@ -7,6 +8,13 @@ bash \
curl \ curl \
jq \ jq \
bind-tools bind-tools
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY . . COPY . .
ENTRYPOINT ["/bin/bash", "/usr/src/app/dynb.sh"] 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"