use explicit line endings instead of heredoc for podman compat

This commit is contained in:
Lance Vick 2023-12-23 11:45:04 -08:00
parent 7cd5887b06
commit dc16ec8e91
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
1 changed files with 13 additions and 13 deletions

View File

@ -23,20 +23,20 @@ RUN ./download-distfiles.sh
RUN set -eux; \ RUN set -eux; \
mkdir -p /rootfs; \ mkdir -p /rootfs; \
mv steps distfiles seed/* /rootfs/ mv steps distfiles seed/* /rootfs/
RUN cat <<EOF > /rootfs/steps/bootstrap.cfg RUN echo "\
FORCE_TIMESTAMPS=False FORCE_TIMESTAMPS=False\n\
CHROOT=False CHROOT=False\n\
CHROOT_ONLY_SYSA=False CHROOT_ONLY_SYSA=False\n\
UPDATE_CHECKSUMS=False UPDATE_CHECKSUMS=False\n\
JOBS=2 JOBS=2\n\
INTERNAL_CI=None INTERNAL_CI=None\n\
BARE_METAL=True BARE_METAL=True\n\
DISK=sdb DISK=sdb\n\
KERNEL_BOOTSTRAP=True KERNEL_BOOTSTRAP=True\n\
BUILD_KERNELS=False BUILD_KERNELS=False\
EOF " > /rootfs/steps/bootstrap.cfg
FROM busybox as build FROM scratch as build
COPY --from=stage0 / . COPY --from=stage0 / .
COPY --from=fetch /rootfs . COPY --from=fetch /rootfs .
ENV ARCH_DIR=x86 ENV ARCH_DIR=x86