inotify-tools
Details
Source
FROM stagex/pallet-gcc-gnu-busybox AS build
ARG VERSION
COPY --from=stagex/core-sqlite3 . /
COPY --from=stagex/user-doxygen . /
ADD fetch/${VERSION}.tar.gz .
WORKDIR /inotify-tools-${VERSION}
RUN --network=none <<-EOF
set -eux
./autogen.sh
./configure --prefix=/usr --enable-fanotify
make
make install DESTDIR=/rootfs
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /