diff --git a/Dockerfile.10-dev b/Dockerfile.10-dev index c169298..8ae7478 100644 --- a/Dockerfile.10-dev +++ b/Dockerfile.10-dev @@ -107,6 +107,7 @@ RUN echo "Setting up and installing packages"; \ echo "" RUN echo "Setting up dev system"; \ + if [ -f "/usr/local/bin/pkmgr" ] ; then rm -Rf "/usr/local/bin/pkmgr"; fi; \ bash -c "$(curl -q -LSsf "https://github.com/casjay-base/centos/raw/main/root/.local/bin/fetch-repo-file")"; \ [ ! -d "/usr/local/share/CasjaysDev/scripts" ] && \ git clone -q https://github.com/casjay-dotfiles/scripts "/usr/local/share/CasjaysDev/scripts" && \ diff --git a/Dockerfile.8-dev b/Dockerfile.8-dev index 21c625f..f73a21e 100644 --- a/Dockerfile.8-dev +++ b/Dockerfile.8-dev @@ -112,6 +112,7 @@ RUN echo "Initializing packages before copying files to image"; \ echo "" RUN echo "Setting up dev system"; \ + if [ -f "/usr/local/bin/pkmgr" ] ; then rm -Rf "/usr/local/bin/pkmgr"; fi; \ bash -c "$(curl -q -LSsf "https://github.com/casjay-base/centos/raw/main/root/.local/bin/fetch-repo-file")"; \ [ ! -d "/usr/local/share/CasjaysDev/scripts" ] && \ git clone -q https://github.com/casjay-dotfiles/scripts "/usr/local/share/CasjaysDev/scripts" && \ diff --git a/Dockerfile.9-dev b/Dockerfile.9-dev index cecb849..2975d3e 100644 --- a/Dockerfile.9-dev +++ b/Dockerfile.9-dev @@ -107,6 +107,7 @@ RUN echo "Setting up and installing packages"; \ echo "" RUN echo "Setting up dev system"; \ + if [ -f "/usr/local/bin/pkmgr" ] ; then rm -Rf "/usr/local/bin/pkmgr"; fi; \ bash -c "$(curl -q -LSsf "https://github.com/casjay-base/centos/raw/main/root/.local/bin/fetch-repo-file")"; \ [ ! -d "/usr/local/share/CasjaysDev/scripts" ] && \ git clone -q https://github.com/casjay-dotfiles/scripts "/usr/local/share/CasjaysDev/scripts" && \