From 94870623e379ba88f846e3619d4834d622a18cc6 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 31 Mar 2019 17:55:50 +0200 Subject: [PATCH] :ambulance: Fixes incorrect architecture download for Influx --- influxdb/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/influxdb/Dockerfile b/influxdb/Dockerfile index f3f3242..f532c1a 100755 --- a/influxdb/Dockerfile +++ b/influxdb/Dockerfile @@ -35,6 +35,7 @@ RUN \ \ && ARCH="${BUILD_ARCH}" \ && if [ "${BUILD_ARCH}" = "aarch64" ]; then ARCH="arm64"; fi \ + && if [ "${BUILD_ARCH}" = "armv7" ]; then ARCH="armhf"; fi \ \ && INFLUXDB="1.7.5" \ && curl -J -L -o /tmp/influxdb.deb.asc \