Compare commits

...

4 Commits

Author SHA1 Message Date
akiel 7d1c5cce10 Add notification app 2020-08-14 15:52:21 +02:00
akiel dd226a1f62 Use sh instead of bash 2020-08-14 15:45:54 +02:00
akiel 173db15aa4 Add execution bit to entrypoint 2020-08-14 15:41:07 +02:00
akiel 5601a4fb8b Correct filename 2020-08-14 15:40:53 +02:00
3 changed files with 5 additions and 4 deletions
-3
View File
@@ -1,3 +0,0 @@
FROM alpine:3.10
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
+4
View File
@@ -0,0 +1,4 @@
FROM alpine:3.10
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"]
Regular → Executable
+1 -1
View File
@@ -1,2 +1,2 @@
#!/usr/bin/env bash
#!/usr/bin/env sh
echo "something going on here"