From 70a54499916c8e625c3900ed7740ea090b5dbc1b Mon Sep 17 00:00:00 2001 From: casjay Date: Mon, 4 May 2026 11:46:42 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Replace=20sysvinit-utils=20with?= =?UTF-8?q?=20openrc=20and=20update=20image=20version=20=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- .env.scripts | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.scripts b/.env.scripts index b202de8..8e540ae 100644 --- a/.env.scripts +++ b/.env.scripts @@ -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 # - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Dockerfile b/Dockerfile index 3aa5bcb..3693936 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"