drone-ntfy/Dockerfile
Tyler Perkins 0ca6b05d20
All checks were successful
continuous-integration/drone/push Build is passing
Fix Dockerfile entry point (#6)
* Add Dockerfile and main.sh

* Add base settings for now

* Add drone

* Fix typo in alpine name

* Add ntfy service to drone

* Update dockerfile

* Fix entry point in Dockerfile
2022-12-16 19:59:54 -05:00

6 lines
129 B
Docker

FROM alpine
COPY main.sh /bin/
RUN chmod +x /bin/main.sh
RUN apk -Uuv add curl ca-certificates bash
ENTRYPOINT bash /bin/main.sh