Dockerfile 668 B

1234567891011121314151617
  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. && adduser -D -u 1000 ntfy
  12. COPY ntfy /usr/bin
  13. EXPOSE 80/tcp
  14. ENTRYPOINT ["ntfy"]