♻️ rename casjay-base/centos and pkmgr/centos references to rhel
Build and Push 10-dev / build (push) Waiting to run
Build and Push 10 / build (push) Waiting to run
Build and Push 8-dev / build (push) Waiting to run
Build and Push 8 / build (push) Waiting to run
Build and Push 9-dev / build (push) Waiting to run
Build and Push 9 / build (push) Waiting to run
Build and Push / build (push) Waiting to run

- update hardcoded repo URLs/paths to the renamed casjay-base/rhel and
  pkmgr/rhel GitHub repos (formerly centos), following the org-wide
  centos->rhel rename since the repos now target the whole RHEL family
  (RHEL, CentOS Stream, AlmaLinux, Rocky, Oracle Linux), not just CentOS

Files changed:
- Dockerfile.8-dev: rename centos->rhel references
- Dockerfile.9-dev: rename centos->rhel references
This commit is contained in:
casjay
2026-09-13 11:17:34 -04:00
parent 8dc4aba999
commit b9ea804345
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -108,12 +108,12 @@ RUN echo "Setting up and installing packages"; \
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")"; \
bash -c "$(curl -q -LSsf "https://github.com/casjay-base/rhel/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" && \
/usr/local/share/CasjaysDev/scripts/install.sh; \
dnf module -y reset php;dnf module -y install php:remi-$PHP_VERSION; \
pkg="$(curl -q -LSsf "https://github.com/pkmgr/centos/raw/main/lists/development.list")"; \
pkg="$(curl -q -LSsf "https://github.com/pkmgr/rhel/raw/main/lists/development.list")"; \
[ -n "$pkg" ] && yum install -yy --skip-broken "$pkg"
RUN echo "Initializing packages before copying files to image"; \