Initial commit

This commit is contained in:
2023-08-18 23:04:55 +02:00
commit bd51cb6b0d
2 changed files with 26 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM alpine:3.18.3
# We need bash for parameter arrays
RUN apk add --no-cache go-sendxmpp bash
# Include the main script
ADD --chmod=555 entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]