mirror of
				https://github.com/falk-werner/webfuse
				synced 2025-06-13 12:54:15 +00:00 
			
		
		
		
	* fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * adds missing toolchain headers to project * renames container macros * adds gdbserver * fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * adds missing toolchain headers to project * renames container macros * adds gdbserver * removes language settings, which contains alternating values * adds wrapper script to launch gdbserver * fix docker command in wrapper script * fixes run in dind setup * replaces docker's init through dump-init * moves filesystem to session * fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * renames container macros * adds gdbserver * fixes verbosity option when set through command line * adds support for build type and allows to run gdb in container * renames container macros * adds gdbserver * adds wrapper script to launch gdbserver * fix docker command in wrapper script * fixes run in dind setup * replaces docker's init through dump-init * moves filesystem to session * adds container_of * added dlist * allows multiple clients to connect * removes directory when session is closed * adds dependecy to uuid-dev * allow clients to register filesystems * updates documentation * moves mountpoint handling into filesystem: mountpoints are removed during session cleanup * adds filesystem name/id to request parameters * fixes security issue: add_filesystem did not check name * removes default link, if it is broken * recreates symlink "default", if filesystem is gone * updates documentation * fixes memory leak * makes authentication work .. again * updates provider to support changed protocol * removes execute right of hello.txt * fixes style issues * fixes javascript style issues * fixes flase positive from Flawfinder * fixes some javascript style issues * removes use of PATH_MAX * removes use of GNU extensions in container_of implementation * ignores findings of flawfinder * replaces dlist by slist * removes duplicate implementation of slist (message_queue)
		
			
				
	
	
		
			110 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| ARG REGISTRY_PREFIX=''
 | |
| ARG CODENAME=bionic
 | |
| 
 | |
| FROM ${REGISTRY_PREFIX}ubuntu:${CODENAME} as builder
 | |
| 
 | |
| RUN set -x \
 | |
|   && apt update \
 | |
|   && apt upgrade -y \
 | |
|   && apt install --yes --no-install-recommends \
 | |
|        build-essential \
 | |
|        cmake \
 | |
|        ninja-build \
 | |
|        pkg-config \
 | |
|        rsync \
 | |
|        gdb \
 | |
|        gdbserver \
 | |
|        valgrind \
 | |
|        uuid-dev
 | |
| 
 | |
| COPY src /usr/local/src
 | |
| 
 | |
| ARG PARALLELMFLAGS=-j2
 | |
| 
 | |
| ARG DUMB_INIT_VERSION=1.2.2
 | |
| 
 | |
| RUN set -x \
 | |
|   && builddeps="xxd" \
 | |
|   && apt install --yes --no-install-recommends $builddeps \
 | |
|   && builddir="/tmp/out" \
 | |
|   && mkdir -p "$builddir" \
 | |
|   && cd "$builddir" \
 | |
|   && cp -R "/usr/local/src/dumb-init-$DUMB_INIT_VERSION" . \
 | |
|   && cd "dumb-init-$DUMB_INIT_VERSION" \
 | |
|   && make "$PARALLELMFLAGS" \
 | |
|   && chmod +x dumb-init \
 | |
|   && mv dumb-init /usr/local/bin/dumb-init \
 | |
|   && dumb-init --version \
 | |
|   && rm -rf "$builddir" \
 | |
|   && apt purge -y $builddeps
 | |
| 
 | |
| ARG GTEST_VERSION=1.8.1
 | |
| 
 | |
| RUN set -x \
 | |
|   && builddir="/tmp/out" \
 | |
|   && mkdir -p "$builddir" \
 | |
|   && cd "$builddir" \
 | |
|   && cmake "/usr/local/src/googletest-release-$GTEST_VERSION" \
 | |
|   && make "$PARALLELMFLAGS" install \
 | |
|   && rm -rf "$builddir"
 | |
| 
 | |
| ARG FUSE_VERSION=3.1.1
 | |
| 
 | |
| RUN set -x \
 | |
|   && builddeps="libtool automake gettext" \
 | |
|   && apt install --yes --no-install-recommends $builddeps \
 | |
|   && cd "/usr/local/src/libfuse-fuse-$FUSE_VERSION" \
 | |
|   && ./makeconf.sh \
 | |
|   && builddir="/tmp/out" \
 | |
|   && mkdir -p "$builddir" \
 | |
|   && cd "$builddir" \
 | |
|   && "/usr/local/src/libfuse-fuse-$FUSE_VERSION/configure" \
 | |
|   && make "$PARALLELMFLAGS" install \
 | |
|   && rm -rf "$builddir" \
 | |
|   && apt purge -y $builddeps
 | |
| 
 | |
| ARG WEBSOCKETS_VERSION=3.1.0
 | |
| 
 | |
| RUN set -x \
 | |
|   && apt install --yes --no-install-recommends \
 | |
|        ca-certificates \
 | |
|        openssl \
 | |
|        libssl-dev \
 | |
|   && builddir="/tmp/out" \
 | |
|   && mkdir -p "$builddir" \
 | |
|   && cd "$builddir" \
 | |
|   && cmake "/usr/local/src/libwebsockets-$WEBSOCKETS_VERSION" \
 | |
|   && make "$PARALLELMFLAGS" install \
 | |
|   && rm -rf "$builddir"
 | |
| 
 | |
| ARG JANSSON_VERSION=2.12
 | |
| 
 | |
| RUN set -x \
 | |
|   && builddir="/tmp/out" \
 | |
|   && mkdir -p "$builddir" \
 | |
|   && cd "$builddir" \
 | |
|   && cmake -DJANSSON_BUILD_DOCS=OFF "/usr/local/src/jansson-$JANSSON_VERSION" \
 | |
|   && make "$PARALLELMFLAGS" install \
 | |
|   && rm -rf "$builddir"
 | |
| 
 | |
| ENV LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
 | |
| 
 | |
| ARG USERID=1000
 | |
| 
 | |
| ARG PROJECTDIR=/workspace/src
 | |
| ARG OUTDIR=/workspace/out
 | |
| ARG SCRIPTDIR=/workspace/bin
 | |
| 
 | |
| RUN set -x \
 | |
|   && useradd -u "$USERID" -ms /bin/bash user \
 | |
|   && mkdir -p "$PROJECTDIR" "$OUTDIR" "$SCRIPTDIR" \
 | |
|   && chown user:user "$PROJECTDIR" "$OUTDIR" "$SCRIPTDIR"
 | |
| 
 | |
| WORKDIR "$OUTDIR"
 | |
| 
 | |
| ENTRYPOINT ["dumb-init", "--"]
 | |
| 
 | |
| # unused
 | |
| ARG QEMU_VERSION_=v3.1.0-2
 | |
| 
 |