Dockerfile 638 B

12345678910111213141516
  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. RUN apk add --no-cache tzdata
  11. COPY ntfy /usr/bin
  12. EXPOSE 80/tcp
  13. ENTRYPOINT ["ntfy"]