1
0
mirror of https://github.com/tmaier/docker-compose synced 2024-11-22 16:01:59 +01:00

Merge pull request #20 from botanegg/patch-1

Add dependency packages for docker-compose
This commit is contained in:
Tobias L. Maier 2019-05-11 12:28:58 +02:00 committed by GitHub
commit 849ba9a937
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

@ -4,7 +4,7 @@ FROM docker:${DOCKER_VERSION}
ARG COMPOSE_VERSION= ARG COMPOSE_VERSION=
ARG DOCKER_VERSION ARG DOCKER_VERSION
RUN apk add --no-cache py-pip RUN apk add --no-cache py-pip python-dev libffi-dev openssl-dev gcc libc-dev make
RUN pip install "docker-compose${COMPOSE_VERSION:+==}${COMPOSE_VERSION}" RUN pip install "docker-compose${COMPOSE_VERSION:+==}${COMPOSE_VERSION}"
LABEL \ LABEL \