Compare commits

..

3 Commits

Author SHA1 Message Date
akiel 9f19deb8ed Install ca-certificates on image 2020-08-14 16:35:39 +02:00
akiel 3da587e98c Add "'s to parameers 2020-08-14 16:33:28 +02:00
akiel 71e5ac5817 Set sh (again) 2020-08-14 16:25:00 +02:00
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -1,4 +1,5 @@
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"]
+2 -2
View File
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
#!/usr/bin/env sh
echo $1 $2 $3 $4 $5
rocketchat-notification -u $1 -p $2 -m $3 -s $4 -c $5
rocketchat-notification -u "$1" -p "$2" -m "$3" -s "$4" -c "$5"