From 8498fd9e0152ecb1c5031c935f645042b949d7df Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Mon, 9 Mar 2020 18:13:37 +0100 Subject: [PATCH] updated to webfused 0.1.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 63ce4dd..479d15d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -106,12 +106,12 @@ RUN set -x \ && make "$PARALLELMFLAGS" install \ && rm -rf "$builddir" -ARG WEBFUSED_VERSION=master +ARG WEBFUSED_VERSION=0.1.0 RUN set -x \ && builddir="/tmp/out" \ && mkdir -p "$builddir" \ && cd "$builddir" \ - && wget "https://github.com/falk-werner/webfused/archive/${WEBFUSED_VERSION}.tar.gz" -O webfused.tar.gz \ + && wget "https://github.com/falk-werner/webfused/archive/v${WEBFUSED_VERSION}.tar.gz" -O webfused.tar.gz \ && tar -xf webfused.tar.gz \ && cd "webfused-$WEBFUSED_VERSION" \ && mkdir .build \