From 1ad003405607c369903e5e431960a3eefce00fde Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Sun, 1 Nov 2020 16:44:14 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index b2b57af2..9ceae9f9 100755 --- a/Dockerfile +++ b/Dockerfile @@ -20,17 +20,17 @@ RUN set -x \ # Setup jemalloc && curl -L -s https://github.com/jemalloc/jemalloc/releases/download/${JEMALLOC_VERSION}/jemalloc-${JEMALLOC_VERSION}.tar.bz2 | tar -xjf - -C /usr/src \ && cd /usr/src/jemalloc-${JEMALLOC_VERSION} \ - && ./configure && \ + && ./configure \ && make \ && make install \ && rm -rf /usr/src/jemalloc-${JEMALLOC_VERSION} \ \ # Setup s6 overlay - && if [ "$TARGETPLATFORM" == "linux/arm/7" ]; \ + && if [ "$TARGETPLATFORM" == "linux/arm/v7" ]; \ then \ - curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-armv7.tar.gz" \ + curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-arm.tar.gz" \ | tar zxvf - -C /; \ - elif [ "$TARGETPLATFORM" == "linux/arm/6" ]; \ + elif [ "$TARGETPLATFORM" == "linux/arm/v6" ]; \ then \ curl -L -f -s "https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-armhf.tar.gz" \ | tar zxvf - -C /; \ -- 2.34.1