diff --git a/webhook/Dockerfile b/webhook/Dockerfile index b96a4c4..3edce24 100644 --- a/webhook/Dockerfile +++ b/webhook/Dockerfile @@ -5,7 +5,12 @@ FROM alpine MAINTAINER kev -RUN apk add -U bash +RUN set -xe \ + && apk add -U bash \ + coreutils \ + curl \ + jq \ + && rm -rf /var/cache/apk/* COPY ./webhook /usr/local/bin/ diff --git a/webhook/webhook b/webhook/webhook index 77bc5ae..dd95759 100755 Binary files a/webhook/webhook and b/webhook/webhook differ