Initial commit

This commit is contained in:
Patrik Kernstock 2020-08-08 20:32:53 +01:00
commit 397ddb0e2b
10 changed files with 275 additions and 0 deletions

View file

@ -0,0 +1,8 @@
FROM alpine:latest
ADD start.sh /start.sh
RUN apk add --no-cache curl openssl jq bash \
&& chmod +x /start.sh
ENTRYPOINT [ "/start.sh" ]