From 190f7e2bd0c841b0b8d7a92b210857b772305b86 Mon Sep 17 00:00:00 2001 From: imxieke Date: Thu, 9 May 2024 09:59:13 +0800 Subject: [PATCH] update boxs alpine --- images/boxs/alpine/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/images/boxs/alpine/Dockerfile b/images/boxs/alpine/Dockerfile index 98438e71..da3e9239 100644 --- a/images/boxs/alpine/Dockerfile +++ b/images/boxs/alpine/Dockerfile @@ -15,9 +15,7 @@ RUN apk add --no-cache shadow musl-dev util-linux-misc linux-headers \ net-tools openssh openrc \ file gawk sed jq tar \ binutils procps htop \ - python3 py3-pip && \ - pip install supervisor && \ - useradd -d /home/${RUN_USER} -c "Packages Builder" -m -s /bin/zsh ${RUN_USER} && \ + && useradd -d /home/${RUN_USER} -c "Packages Builder" -m -s /bin/zsh ${RUN_USER} && \ echo "${RUN_USER}:${PASSWD}" | chpasswd && \ echo "root:${PASSWD}" | chpasswd && \ echo "${RUN_USER} ALL=(ALL:ALL) NOPASSWD: ALL" >>/etc/sudoers && \