mirror of
https://github.com/Clortox/drone-ntfy.git
synced 2025-01-09 11:07:59 +00:00
6 lines
129 B
Docker
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
|