Update Dockerfile
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Sun, 1 Nov 2020 15:44:14 +0000 (16:44 +0100)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Sun, 1 Nov 2020 15:44:14 +0000 (16:44 +0100)
Dockerfile

index b2b57af25fed2cbdc75b7d575af2a289957fc135..9ceae9f92d0c715a3b7cd58bb4723de721316aee 100755 (executable)
@@ -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 /; \