🗃️ Committing everything that changed 🗃️

Dockerfile
Dockerfile.18.04
Dockerfile.19.04
Dockerfile.20.04
Dockerfile.21.04
Dockerfile.22.04
Dockerfile.23.04
Dockerfile.23.10
Dockerfile.24.04
Dockerfile.24.10
.env.scripts.18.04
.env.scripts.19.04
.env.scripts.20.04
.env.scripts.21.04
.env.scripts.22.04
.env.scripts.23.04
.env.scripts.23.10
.env.scripts.24.04
.env.scripts.24.10
This commit is contained in:
casjay
2024-08-11 09:41:20 -04:00
parent 73f1e85684
commit f72cda0654
19 changed files with 39 additions and 19 deletions

View File

@@ -55,7 +55,7 @@ ARG PHP_SERVER
ARG SHELL_OPTS
ARG DEBIAN_FRONTEND
ARG PACK_LIST="bash-completion git curl wget sudo unzip tini xz-utils iproute2 pinentry-curses bsd-mailx procps net-tools bsd-mailx postfix python3-pip certbot ca-certificates "
ARG PACK_LIST="bash-completion git curl wget sudo unzip tini xz-utils iproute2 pinentry-curses bsd-mailx procps net-tools bsd-mailx postfix python3-pip certbot ca-certificates jq "
ENV ENV=~/.profile
ENV SHELL="/bin/sh"
@@ -76,6 +76,8 @@ RUN set -e; \
echo 'export DEBIAN_FRONTEND="'${DEBIAN_FRONTEND}'"' >"/etc/profile.d/apt.sh" && chmod 755 "/etc/profile.d/apt.sh"; \
apt update && apt install -yy bash locales apt-utils; \
update-alternatives --install /bin/sh sh /bin/bash 1; \
update-alternatives --install /usr/bin/sh sh /bin/bash 1; \
update-alternatives --install /usr/bin/bash sh /bin/bash 1; \
echo "$LANG UTF-8" >"/etc/locale.gen"; \
dpkg-reconfigure --frontend=noninteractive locales;update-locale LANG=$LANG