Dockerfile-arm 750 B

12345678910111213141516171819
  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. # Alpine does not support adding "tzdata" on ARM anymore, see
  11. # https://github.com/binwiederhier/ntfy/issues/894
  12. RUN adduser -D -u 1000 ntfy
  13. COPY ntfy /usr/bin
  14. EXPOSE 80/tcp
  15. ENTRYPOINT ["ntfy"]