🗃️ Committing everything that changed 🗃️

Dockerfile
rootfs/root/docker/setup/02-packages.sh
This commit is contained in:
casjay 2024-09-17 14:43:40 -04:00
parent 4ba5445345
commit 4d360cd12c
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145
2 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ ARG PHP_SERVER
ARG SHELL_OPTS
ARG DEBIAN_FRONTEND
ARG PACK_LIST="systemd systemd-sysv cron curl wget git jq openssh-server "
ARG PACK_LIST="curl wget git jq openssh-server "
ENV ENV=~/.profile
ENV SHELL="/bin/sh"
@ -74,7 +74,7 @@ COPY ./rootfs/usr/local/bin/. /usr/local/bin/
RUN set -e; \
echo "Setting up prerequisites"; \
true
apt update && apt install -yy systemd systemd-sysv cron
ENV SHELL="/bin/bash"
SHELL [ "/bin/bash", "-c" ]

View File

@ -28,12 +28,12 @@ exitCode=0
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Predifined actions
apt-get update
apt-get install ca-certificates curl
apt-get install -y ca-certificates curl
install -m 0755 -d /etc/apt/keyrings
curl -q -LSsf "https://download.docker.com/linux/debian/gpg" -o "/etc/apt/keyrings/docker.asc"
chmod a+r /etc/apt/keyrings/docker.asc
printf '%s %s\n' "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian" "$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | tee /etc/apt/sources.list.d/docker.list >/dev/null
apt-get update && apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
apt-get update && apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script