mirror of
https://github.com/Clortox/drone-ntfy.git
synced 2025-01-22 16:07:58 +00:00
cd40495ff4
* Add Dockerfile and main.sh * Add base settings for now * Add drone * Fix typo in alpine name * Add ntfy service to drone * Update dockerfile
6 lines
119 B
Docker
6 lines
119 B
Docker
FROM alpine
|
|
COPY main.sh /bin/
|
|
RUN chmod +x /bin/main.sh
|
|
RUN apk -Uuv add curl ca-certificates
|
|
ENTRYPOINT /bin/main.sh
|