12 lines
211 B
Docker
12 lines
211 B
Docker
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"]
|