Initial commit

This commit is contained in:
Tom Neuber 2024-10-09 00:59:29 +02:00
commit 89e81d78bd
Signed by: tom
GPG key ID: F17EFE4272D89FF6
5 changed files with 113 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM alpine:latest
RUN apk add --no-cache bash yq
COPY entrypoint.sh /entrypoint.sh
COPY messages.yaml /messages.yaml
RUN chmod +x /entrypoint.sh
ENV OUTPUT_FILE="message.txt"
ENTRYPOINT ["/entrypoint.sh"]