13 lines
211 B
Text
13 lines
211 B
Text
|
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"]
|