Compare commits

...

2 Commits

Author SHA1 Message Date
Tyler Perkins 628214b057 Merge branch 'Dev' of github.com:Clortox/drone-ntfy into Dev
continuous-integration/drone/push Build is passing Details
2022-12-16 19:58:28 -05:00
Tyler Perkins 26ae5336e4 Fix entry point in Dockerfile 2022-12-16 19:58:20 -05:00
1 changed files with 2 additions and 2 deletions

View File

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