feat: Sanitize dockerfile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Glenn Y. Rolland 2023-02-21 14:42:29 +01:00
parent 3f4a63580c
commit 0ff555ef12

View file

@ -1,3 +1,9 @@
FROM binwiederhier/ntfy
FROM binwiederhier/ntfy:v2.0.1
# AS builder
# FROM scratch AS runtime
# COPY --from=builder /usr/bin/ntfy /usr/bin/ntfy
COPY server.yml /etc/ntfy/server.yml
ENTRYPOINT ["ntfy", "serve"]
CMD []