mirror of
https://github.com/Clortox/drone-ntfy.git
synced 2024-06-08 02:40:40 +00:00
e93440e203
All checks were successful
continuous-integration/drone/push Build is passing
* Add Dockerfile and main.sh * Add base settings for now * Add drone * Fix typo in alpine name
6 lines
118 B
Docker
6 lines
118 B
Docker
FROM alpine
|
|
ADD main.sh /bin/
|
|
RUN chmod +x /bin/main.sh
|
|
RUN apk -Uuv add curl ca-certificates
|
|
ENTRYPOINT /bin/main.sh
|