Dockerfile 608 B

123456789101112131415
  1. FROM alpine
  2. LABEL org.opencontainers.image.authors="philipp.heckel@gmail.com"
  3. LABEL org.opencontainers.image.url="https://ntfy.sh/"
  4. LABEL org.opencontainers.image.documentation="https://docs.ntfy.sh/"
  5. LABEL org.opencontainers.image.source="https://github.com/binwiederhier/ntfy"
  6. LABEL org.opencontainers.image.vendor="Philipp C. Heckel"
  7. LABEL org.opencontainers.image.licenses="Apache-2.0, GPL-2.0"
  8. LABEL org.opencontainers.image.title="ntfy"
  9. LABEL org.opencontainers.image.description="Send push notifications to your phone or desktop using PUT/POST"
  10. COPY ntfy /usr/bin
  11. EXPOSE 80/tcp
  12. ENTRYPOINT ["ntfy"]