2023-11-05 16:38:52 +02:00

9 lines
154 B
Docker

FROM alpine:3.18.4
RUN apk update
RUN apk add --no-cache curl
RUN apk add --no-cache jq
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]