9 lines
139 B
Docker
9 lines
139 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --update --no-cache add yq
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod a+x /entrypoint.sh
|
|
|
|
CMD /entrypoint.sh
|