mirror of
https://github.com/containers/fuse-overlayfs.git
synced 2025-08-03 09:55:57 -04:00

since these files need the -v option that is not present with Docker, rename the files to Containerfile to avoid confusion. more info: https://twitter.com/cpuguy83/status/1313523894536429568 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
12 lines
320 B
Plaintext
12 lines
320 B
Plaintext
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
|
|
|