mirror of
https://github.com/jadolg/rocketchat-notification-action.git
synced 2026-06-07 20:17:51 +00:00
6 lines
296 B
Docker
6 lines
296 B
Docker
FROM alpine:3.10
|
|
RUN apk --no-cache add ca-certificates
|
|
RUN wget https://github.com/aleph-engineering/rocketchat-notification/releases/download/1.4.1/rocketchat-notification -P /usr/bin/ && chmod +x /usr/bin/rocketchat-notification
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|