From fe856ea46b30527e509d25eef54e16ee3aba5a23 Mon Sep 17 00:00:00 2001 From: casjay Date: Sat, 10 Aug 2024 19:40:24 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dockerfile Dockerfile.8 Dockerfile.9 --- Dockerfile | 2 +- Dockerfile.8 | 2 +- Dockerfile.9 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f9dcea2..edd0159 100644 --- a/Dockerfile +++ b/Dockerfile @@ -98,7 +98,7 @@ RUN echo "Running pre-package commands"; \ RUN echo "Setting up and installing packages"; \ $SHELL_OPTS; \ - if [ -n "${PACK_LIST}" ];then echo "Installing packages: $PACK_LIST";pkmgr install ${PACK_LIST};fi; \ + if [ -n "${PACK_LIST}" ];then echo "Installing packages: $PACK_LIST";echo "${PACK_LIST}" >/root/docker/setup/packages.txt;pkmgr install ${PACK_LIST};fi; \ echo "" RUN echo "Initializing packages before copying files to image"; \ diff --git a/Dockerfile.8 b/Dockerfile.8 index eef8418..2b4b134 100644 --- a/Dockerfile.8 +++ b/Dockerfile.8 @@ -98,7 +98,7 @@ RUN echo "Running pre-package commands"; \ RUN echo "Setting up and installing packages"; \ $SHELL_OPTS; \ - if [ -n "${PACK_LIST}" ];then echo "Installing packages: $PACK_LIST";pkmgr install ${PACK_LIST};fi; \ + if [ -n "${PACK_LIST}" ];then echo "Installing packages: $PACK_LIST";echo "${PACK_LIST}" >/root/docker/setup/packages.txt;pkmgr install ${PACK_LIST};fi; \ echo "" RUN echo "Initializing packages before copying files to image"; \ diff --git a/Dockerfile.9 b/Dockerfile.9 index bb1c30e..ad9cf44 100644 --- a/Dockerfile.9 +++ b/Dockerfile.9 @@ -98,7 +98,7 @@ RUN echo "Running pre-package commands"; \ RUN echo "Setting up and installing packages"; \ $SHELL_OPTS; \ - if [ -n "${PACK_LIST}" ];then echo "Installing packages: $PACK_LIST";pkmgr install ${PACK_LIST};fi; \ + if [ -n "${PACK_LIST}" ];then echo "Installing packages: $PACK_LIST";echo "${PACK_LIST}" >/root/docker/setup/packages.txt;pkmgr install ${PACK_LIST};fi; \ echo "" RUN echo "Initializing packages before copying files to image"; \