24 lines
681 B
Plaintext
24 lines
681 B
Plaintext
FROM alpine
|
|
WORKDIR /build
|
|
RUN apk add git make gcc libc-dev musl-dev glib-static gettext eudev-dev \
|
|
linux-headers automake autoconf cmake meson ninja clang go-md2man
|
|
|
|
RUN git clone https://github.com/libfuse/libfuse -b fuse-3.16.2 && \
|
|
cd libfuse && \
|
|
mkdir build && \
|
|
cd build && \
|
|
LDFLAGS="-lpthread -s -w -static" meson --prefix /usr -D default_library=static .. && \
|
|
ninja && \
|
|
ninja install
|
|
|
|
COPY . /build/fuse-overlayfs
|
|
RUN cd fuse-overlayfs && \
|
|
./autogen.sh && \
|
|
LIBS="-ldl" LDFLAGS="-s -w -static" ./configure --prefix /usr && \
|
|
make clean && \
|
|
make && \
|
|
make install
|
|
|
|
USER nobody
|
|
ENTRYPOINT ["/usr/bin/fuse-overlayfs","-f"]
|