Compare commits

...

2 Commits

Author SHA1 Message Date
Dustin 3d9dd0ecf2 Install libconfuse
ContainerImages/build.rootfs/pipeline/head This commit looks good Details
This is is a dependency of `genimage`.
2024-02-07 13:00:36 -06:00
Dustin 8ae4e625d0 Set BUILDAH_ISOLATION env var
By default, `buildah` creates its working containers using kernel
namespaces.  When it is running in a container itself, this is not
possible, so it must use a plain `chroot`.  Setting this environment
variable will ensure that it does this by default, without having to
explicitly pass `--isolation chroot` on the command line.
2024-02-07 12:59:11 -06:00
1 changed files with 3 additions and 0 deletions

View File

@ -27,9 +27,12 @@ RUN --mount=type=cache,target=/var/cache \
buildah \ buildah \
dosfstools \ dosfstools \
gettext-envsubst \ gettext-envsubst \
libconfuse \
squashfs-tools \ squashfs-tools \
tar \ tar \
zstd \ zstd \
&& : && :
COPY --from=build /usr/local/bin/genimage /usr/local/bin/genimage COPY --from=build /usr/local/bin/genimage /usr/local/bin/genimage
ENV BUILDAH_ISOLATION=chroot