diff --git a/Dockerfile b/Dockerfile index af07440..32e5c25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,13 @@ RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2 # Install deps RUN apk add --no-cache git openssh-client jq bash +# Install docker-compose +RUN COMPOSE_VERSION="1.23.2" \ +&& apk add --no-cache \ + py-pip \ +&& pip install --no-cache-dir \ + docker-compose==${COMPOSE_VERSION} + # Create folder structure RUN mkdir -p /var/opt/webhookd/scripts /var/opt/webhookd/work