diff --git a/Containerfile.alpine b/Containerfile.alpine index eeb2d94..6a727f3 100644 --- a/Containerfile.alpine +++ b/Containerfile.alpine @@ -3,7 +3,7 @@ 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 && \ +RUN git clone https://github.com/libfuse/libfuse -b fuse-3.16.2 && \ cd libfuse && \ mkdir build && \ cd build && \ diff --git a/Containerfile.static.fedora b/Containerfile.static.fedora index 51cde87..9f9dfc7 100644 --- a/Containerfile.static.fedora +++ b/Containerfile.static.fedora @@ -3,7 +3,7 @@ WORKDIR /build RUN dnf update -y && \ dnf install -y git make automake autoconf gcc glibc-static meson ninja-build clang -RUN git clone https://github.com/libfuse/libfuse && \ +RUN git clone https://github.com/libfuse/libfuse -b fuse-3.16.2 && \ cd libfuse && \ mkdir build && \ cd build && \