🔧 Replace sysvinit-utils with openrc and update image version 🔧

- Replace `sysvinit-utils` with `openrc` in ENV_PACKAGES in .env.scripts
- Replace `sysvinit-utils` with `openrc` in PACK_LIST ARG in Dockerfile
- Update IMAGE_VERSION from `3.22` to `latest` in Dockerfile

Dockerfile
.env.scripts
This commit is contained in:
2026-05-04 11:46:42 -04:00
parent 92104879ba
commit 70a5449991
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ DEFAULT_DATA_DIR="/usr/local/share/template-files/data"
DEFAULT_CONF_DIR="/usr/local/share/template-files/config"
DEFAULT_TEMPLATE_DIR="/usr/local/share/template-files/defaults"
# - - - - - - - - - - - - - - - - - - - - - - - - -
ENV_PACKAGES="bash bash-completion git curl wget sudo unzip iproute2 sysvinit-utils tzdata ca-certificates ncurses util-linux pciutils usbutils net-tools coreutils "
ENV_PACKAGES="bash bash-completion git curl wget sudo unzip iproute2 openrc tzdata ca-certificates ncurses util-linux pciutils usbutils net-tools coreutils "
# - - - - - - - - - - - - - - - - - - - - - - - - -
# ex: ts=2 sw=2 et filetype=sh
# - - - - - - - - - - - - - - - - - - - - - - - - -
+2 -2
View File
@@ -21,7 +21,7 @@ ARG NODE_VERSION="system"
ARG NODE_MANAGER="system"
ARG IMAGE_REPO="casjaysdev/alpine"
ARG IMAGE_VERSION="3.22"
ARG IMAGE_VERSION="latest"
ARG CONTAINER_VERSION=""
ARG PULL_URL="alpine"
@@ -43,7 +43,7 @@ ARG SHELL_OPTS
ARG DISTRO_VERSION
ARG CONTAINER_VERSION
ARG PACK_LIST="bash bash-completion git curl wget sudo unzip iproute2 sysvinit-utils tzdata ca-certificates ncurses util-linux pciutils usbutils net-tools coreutils "
ARG PACK_LIST="bash bash-completion git curl wget sudo unzip iproute2 openrc tzdata ca-certificates ncurses util-linux pciutils usbutils net-tools coreutils "
ENV ENV=~/.profile
ENV SHELL="/bin/sh"