From 213cb336ebacfe1d02ceb4bb52862763730a72cc Mon Sep 17 00:00:00 2001 From: "Tobias L. Maier" Date: Thu, 15 Apr 2021 13:56:00 +0200 Subject: [PATCH] Reformat Dockerfile --- Dockerfile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cab7776..96665ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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