8 lines
138 B
Docker
8 lines
138 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 |