Push-Message-Randomizer/Dockerfile

13 lines
211 B
Text
Raw Normal View History

2024-10-09 00:59:29 +02:00
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"]