service-ntfy/Dockerfile

12 lines
261 B
Text
Raw Permalink Normal View History

2023-08-27 17:44:13 +02:00
# FROM binwiederhier/ntfy:v2.0.1
# FROM binwiederhier/ntfy:v2.1.2
2023-08-27 17:44:13 +02:00
FROM binwiederhier/ntfy:v2.7.0
2023-02-21 14:42:29 +01:00
# AS builder
# FROM scratch AS runtime
# COPY --from=builder /usr/bin/ntfy /usr/bin/ntfy
2023-01-10 17:41:41 +01:00
COPY server.yml /etc/ntfy/server.yml
ENTRYPOINT ["ntfy", "serve"]
2023-02-21 14:42:29 +01:00
CMD []