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

Compare commits

..

No commits in common. "master" and "v0.2.0" have entirely different histories.

2 changed files with 11 additions and 12 deletions

View File

@ -30,7 +30,7 @@ RUN set -x \
ARG PARALLELMFLAGS=-j2
ARG S6OVERLAY_VERSION=2.1.0.0
ARG S6OVERLAY_VERSION=1.22.1.0
RUN set -x \
&& builddir="/tmp/out" \
&& mkdir -p "$builddir" \
@ -48,7 +48,7 @@ RUN set -x \
&& tar -xf socklog.tar.gz -C / \
&& rm -rf "$builddir"
ARG FUSE_VERSION=3.10.0
ARG FUSE_VERSION=3.9.2
RUN set -x \
&& builddeps="udev gettext " \
&& apt install --yes --no-install-recommends $builddeps \
@ -58,12 +58,15 @@ RUN set -x \
&& wget "https://github.com/libfuse/libfuse/archive/fuse-${FUSE_VERSION}.tar.gz" -O libfuse.tar.gz \
&& tar -xf libfuse.tar.gz \
&& cd "libfuse-fuse-$FUSE_VERSION" \
&& meson -Dexamples=false .build \
&& meson install -C .build \
&& mkdir .build \
&& cd .build \
&& meson .. \
&& ninja \
&& ninja install \
&& rm -rf "$builddir" \
&& apt purge -y $builddeps
ARG WEBSOCKETS_VERSION=4.1.3
ARG WEBSOCKETS_VERSION=4.0.13
RUN set -x \
&& apt install --yes --no-install-recommends \
ca-certificates \
@ -81,7 +84,7 @@ RUN set -x \
&& make "$PARALLELMFLAGS" install \
&& rm -rf "$builddir"
ARG JANSSON_VERSION=2.13.1
ARG JANSSON_VERSION=2.12
RUN set -x \
&& builddir="/tmp/out" \
&& mkdir -p "$builddir" \
@ -97,7 +100,7 @@ RUN set -x \
ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
ARG WEBFUSE_VERSION=0.5.1
ARG WEBFUSE_VERSION=0.4.0
RUN set -x \
&& builddir="/tmp/out" \
&& mkdir -p "$builddir" \
@ -111,7 +114,7 @@ RUN set -x \
&& ninja install \
&& rm -rf "$builddir"
ARG WEBFUSED_VERSION=0.5.0
ARG WEBFUSED_VERSION=0.4.1
RUN set -x \
&& builddir="/tmp/out" \
&& mkdir -p "$builddir" \

View File

@ -3,10 +3,6 @@
# webfuse-example
Example of webfuse.
**Note:** This repository refers to [webfuse-legacy](https://github.com/falk-werner/webfuse/tree/webfuse-legacy).
Since `webfuse-legacy` is out-dated, the repository is archived and will be removed in future.
_Please leave an issue if you are still interested in this code._
## Build
docker build --rm --build-arg "USERID=`id -u`" --tag webfuse .