Update Dockerfile with docker-compose

This commit is contained in:
Jens Willmer 2019-03-29 10:27:01 +01:00 committed by Nicolas Carlier
parent 65dccefe7d
commit 690e0e1623

View File

@ -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