blob: 9e88aa2c5f726721f377bdee0383db8598db0cd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y build-essential git pkg-config fuse3 libfuse3-3 libfuse3-dev strace
WORKDIR /fus
RUN mkdir -pv mountpoint
RUN git clone https://github.com/libfuse/libfuse
RUN gcc -Wall ./libfuse/example/passthrough.c `pkg-config fuse3 --cflags --libs` -o server-bin
CMD ["bash"]
|