From 86689e8fd211d6ea4edc45c514ac66d102cab432 Mon Sep 17 00:00:00 2001 From: adminroot Date: Tue, 16 Dec 2025 16:00:58 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1585957..bb686f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,11 +2,10 @@ FROM alpine:latest WORKDIR /app -RUN apk update && apk add --no-cache \ - wget supervisor \ - && rm -rf /var/cache/apk/* +RUN apk add --no-cache tini RUN wget https://git.nvme.cc/adminroot/auto-update/raw/branch/main/app/ssserver \ && chmod +x ssserver +ENTRYPOINT ["/sbin/tini", "--"] CMD ["/app/ssserver", "-c", "/app/server.json"]