mirror of
https://github.com/containers/fuse-overlayfs.git
synced 2025-08-03 18:05:58 -04:00
12 lines
320 B
Docker
12 lines
320 B
Docker
FROM docker.io/ubuntu:rolling
|
|
WORKDIR /build
|
|
RUN apt-get update && \
|
|
apt-get install --no-install-recommends -y \
|
|
libc6-dev gcc g++ make automake autoconf clang pkgconf libfuse3-dev
|
|
|
|
RUN cd fuse-overlayfs && \
|
|
sh autogen.sh && \
|
|
LIBS="-ldl" LDFLAGS="-static" ./configure --prefix /usr && \
|
|
make
|
|
|