Added jq as runtime dependency

This commit is contained in:
Nicolai Ort 2023-05-12 08:24:26 +02:00
parent 3fddebb659
commit 77279b3a99
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

View File

@ -5,7 +5,7 @@ COPY plugin.sh ./
RUN dos2unix plugin.sh
FROM registry.odit.services/hub/library/alpine3.17
RUN apk add curl --no-cache --update && rm -rf /var/cache/apk/*
RUN apk add curl jq --no-cache --update && rm -rf /var/cache/apk/*
# add the wrapper which acts as a drone plugin
COPY --from=BUILD /app/plugin.sh /plugin.sh