mirror of
https://git.lerch.org/lobo/action-notify-ntfy.git
synced 2026-07-26 11:33:07 -05:00
9 lines
108 B
Docker
9 lines
108 B
Docker
FROM alpine
|
|
|
|
RUN true && \
|
|
apk add --no-cache curl
|
|
|
|
COPY entrypoint.sh /
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|