service-ntfy/Dockerfile
Glenn Y. Rolland 0ff555ef12
All checks were successful
continuous-integration/drone/push Build is passing
feat: Sanitize dockerfile
2023-02-21 14:42:29 +01:00

10 lines
195 B
Docker

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 []