Compare commits

..

No commits in common. "9d37795e054174f51567c0b0abf058612c7ce88e" and "ca39ddc19ee3807d2b52e90b36efbb9fd77718f5" have entirely different histories.

2 changed files with 7 additions and 17 deletions

View file

@ -19,18 +19,18 @@ jobs:
image: fedora:40 image: fedora:40
steps: steps:
- name: Install Tools - name: Install Tools
run: 'dnf install -y --setopt install_weak_deps=False nodejs git buildah qemu-user-static fuse-overlayfs --exclude container-selinux' run: 'dnf install -y --setopt install_weak_deps=False nodejs git buildah qemu-user-static fuse-overlayfs'
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Build Images - name: Build Images
run: | run: |
cd fedora-40 && \ cd fedora-40 && \
buildah --storage-opt mount_program=/usr/bin/fuse-overlayfs --cgroup-manager=cgroupfs manifest create code.lightstands.xyz/standcoded/fedora:40 && \ buildah --storage-opt mount_program=/usr/bin/fuse-overlayfs manifest create code.lightstands.xyz/standcoded/fedora:40 && \
buildah --storage-opt mount_program=/usr/bin/fuse-overlayfs --cgroup-manager=cgroupfs build --arch amd64 \ buildah --storage-opt mount_program=/usr/bin/fuse-overlayfs build --arch amd64 \
--pid=host --ipc=host --network=host --userns=host --devpts=host --uts=host --squash \ --pid=host --ipc=host --network=host --userns=host --uts=host --squash \
--manifest code.lightstands.xyz/standcoded/fedora:40 . && \ --manifest code.lightstands.xyz/standcoded/fedora:40 . && \
buildah --storage-opt mount_program=/usr/bin/fuse-overlayfs --cgroup-manager=cgroupfs build --arch aarch64 \ buildah --storage-opt mount_program=/usr/bin/fuse-overlayfs build --arch aarch64 \
--pid=host --ipc=host --network=host --userns=host --devpts=host --uts=host --squash \ --pid=host --ipc=host --network=host --userns=host --uts=host --squash \
--manifest code.lightstands.xyz/standcoded/fedora:40 . --manifest code.lightstands.xyz/standcoded/fedora:40 .
- name: Push Images - name: Push Images
run: | run: |

View file

@ -4,7 +4,6 @@ RUN dnf update -y --setopt install_weak_deps=False && \
dnf install -y --setopt install_weak_deps=False \ dnf install -y --setopt install_weak_deps=False \
git git-lfs git-ftp \ git git-lfs git-ftp \
jq yq sqlite sqlite-devel coreutils brotli zstd binutils aria2 bash \ jq yq sqlite sqlite-devel coreutils brotli zstd binutils aria2 bash \
fuse-overlayfs \
bison flex \ bison flex \
nodejs nodejs-devel nodejs-npm \ nodejs nodejs-devel nodejs-npm \
julia \ julia \
@ -18,16 +17,7 @@ RUN dnf update -y --setopt install_weak_deps=False && \
java-21-openjdk java-21-openjdk-devel \ java-21-openjdk java-21-openjdk-devel \
&& \ && \
dnf group install -y --setopt install_weak_deps=False "C Development Tools and Libraries" && \ dnf group install -y --setopt install_weak_deps=False "C Development Tools and Libraries" && \
dnf group install -y --setopt install_weak_deps=False "Container Management" --exclude container-selinux &&\ dnf group install -y --setopt install_weak_deps=False "Container Management" &&\
dnf clean all -y dnf clean all -y
# Adjust storage.conf to enable Fuse storage.
RUN sed -i -e 's|^#mount_program|mount_program|g' -e '/additionalimage.*/a "/var/lib/shared",' /etc/containers/storage.conf
RUN mkdir -p /var/lib/shared/overlay-images /var/lib/shared/overlay-layers; touch /var/lib/shared/overlay-images/images.lock; touch /var/lib/shared/overlay-layers/layers.lock
# Set up environment variables to note that this is
# not starting with usernamespace and default to
# isolate the filesystem with chroot.
ENV _BUILDAH_STARTED_IN_USERNS="" BUILDAH_ISOLATION=chroot
ENTRYPOINT [ "/bin/bash" ] ENTRYPOINT [ "/bin/bash" ]