1
0
mirror of https://github.com/falk-werner/webfuse-example synced 2024-10-27 20:44:09 +00:00

updated to webfused 0.1.0

This commit is contained in:
Falk Werner 2020-03-09 18:13:37 +01:00
parent 646867ba3e
commit 8498fd9e01

View File

@ -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 \