From ce50e3dcb745e8e463b0a7e2eb07163bcfa914bf Mon Sep 17 00:00:00 2001 From: Jake Hyde Date: Fri, 1 Nov 2024 15:14:08 -0400 Subject: [PATCH] Revert "Change the generated image to `bci-busybox:15.6` (#252)" This reverts commit 3d1d808b6703079fe78bd7214db059f41e71c20b. --- package/Dockerfile | 38 ++++++++++++-------------------------- 1 file changed, 12 insertions(+), 26 deletions(-) diff --git a/package/Dockerfile b/package/Dockerfile index a8d79d8626..ec46b4f5fd 100644 --- a/package/Dockerfile +++ b/package/Dockerfile @@ -1,39 +1,25 @@ -ARG BCI_VERSION=15.6 +FROM registry.suse.com/bci/bci-base:15.6 -FROM registry.suse.com/bci/bci-busybox:${BCI_VERSION} AS final -FROM registry.suse.com/bci/bci-base:${BCI_VERSION} AS builder - -# Creates the base dir for the target image, and hydrates it with the -# final image's contents. -RUN mkdir /chroot -COPY --from=final / /chroot/ +ENV SSL_CERT_DIR /etc/rancher/ssl -RUN zypper --non-interactive refresh && \ - zypper --installroot /chroot -n rm busybox-less && \ - zypper --installroot /chroot -n install \ - git-core curl mkisofs openssh-clients openssl patterns-base-fips && \ +RUN zypper -n update && \ + zypper -n install git-core curl ca-certificates unzip mkisofs xz gzip sed tar openssh-clients && \ zypper -n clean -a && \ - rm -rf /chroot/tmp/* /chroot/var/tmp/* /chroot/usr/share/doc/packages/* + rm -rf /tmp/* /var/tmp/* /usr/share/doc/packages/* RUN useradd -u 1000 machine -RUN cp /etc/passwd /chroot/etc/passwd - -COPY download_driver.sh /chroot/usr/local/bin/ -RUN chmod +x /chroot/usr/local/bin/download_driver.sh - -COPY rancher-machine entrypoint.sh /chroot/usr/local/bin/ -RUN chmod 0755 /chroot/usr/local/bin - -FROM scratch - -ENV SSL_CERT_DIR /etc/rancher/ssl - -COPY --from=builder /chroot / RUN mkdir -p .docker/machine/machines /etc/rancher/ssl /home/machine && \ chown -R machine /etc/rancher/ssl && \ chown -R machine /home/machine +COPY download_driver.sh /usr/local/bin/ +RUN chmod +x /usr/local/bin/download_driver.sh + +COPY rancher-machine entrypoint.sh /usr/local/bin/ +RUN chmod 0777 /usr/local/bin + USER 1000 +WORKDIR /home/machine ENTRYPOINT ["entrypoint.sh"]