github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/contrib/podmanimage/stable/manual/Containerfile (about)

     1  # stable/manual/Containerfile
     2  #
     3  # Build a Podman container image from the latest
     4  # stable version of Podman on the Fedora Updates System.
     5  # https://bodhi.fedoraproject.org/updates/?search=podman
     6  # This image can be used to create a secured container
     7  # that runs safely with privileges within the container.
     8  # This Containerfile builds version 1.7.0, the version and
     9  # the RPM name would need to be adjusted before a run as
    10  # appropriate.
    11  #
    12  # To use, first copy an rpm file from bohdi to `/root/tmp`
    13  # and then run:
    14  #   'podman build -f ./Containerfile -t quay.io/podman/stable:v1.7.0 .'
    15  #
    16  # Once complete run:
    17  #   `podman push quay.io/stable:v1.7.0 docker://quay.io/podman/stable:v1.7.0`
    18  #
    19  # Start Build Process using the latest Fedora
    20  FROM registry.fedoraproject.org/fedora:latest
    21  
    22  # Don't include container-selinux and remove
    23  # directories used by dnf that are just taking
    24  # up space.
    25  #
    26  COPY /tmp/podman-1.7.0-3.fc30.x86_64.rpm /tmp
    27  RUN yum -y install /tmp/podman-1.7.0-3.fc30.x86_64.rpm fuse-overlayfs --exclude container-selinux; rm -rf /var/cache /var/log/dnf* /var/log/yum.* /tmp/podman*.rpm
    28  
    29  ADD https://raw.githubusercontent.com/containers/libpod/master/contrib/podmanimage/stable/containers.conf /etc/containers/
    30  
    31  # chmod containers.conf and adjust storage.conf to enable Fuse storage.
    32  RUN chmod 644 /etc/containers/containers.conf; sed -i -e 's|^#mount_program|mount_program|g' -e '/additionalimage.*/a "/var/lib/shared",' -e 's|^mountopt[[:space:]]*=.*$|mountopt = "nodev,fsync=0"|g' /etc/containers/storage.conf
    33  RUN mkdir -p /var/lib/shared/overlay-images /var/lib/shared/overlay-layers /var/lib/shared/vfs-images /var/lib/shared/vfs-layers; touch /var/lib/shared/overlay-images/images.lock; touch /var/lib/shared/overlay-layers/layers.lock; touch /var/lib/shared/vfs-images/images.lock; touch /var/lib/shared/vfs-layers/layers.lock
    34  
    35  
    36  ENV _CONTAINERS_USERNS_CONFIGURED=""