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

Reformat Dockerfile

This commit is contained in:
Tobias L. Maier 2021-04-15 13:56:00 +02:00 committed by GitHub
parent fdb37cfb2e
commit 213cb336eb
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

@ -5,7 +5,16 @@ ARG COMPOSE_VERSION=
ARG DOCKER_VERSION
RUN apk add --no-cache py3-pip python3
RUN apk add --no-cache --virtual build-dependencies python3-dev libffi-dev openssl-dev gcc libc-dev rust cargo make \
RUN apk add --no-cache --virtual \
build-dependencies \
cargo \
gcc \
libc-dev \
libffi-dev \
make \
openssl-dev \
python3-dev \
rust \
&& pip3 install "docker-compose${COMPOSE_VERSION:+==}${COMPOSE_VERSION}" \
&& apk del build-dependencies