更新 Dockerfile
All checks were successful
Build SSSERVER Docker Image / build-socks (push) Successful in 12s

This commit is contained in:
2025-12-16 16:00:58 +00:00
parent 9fffd3976f
commit 86689e8fd2

View File

@@ -2,11 +2,10 @@ FROM alpine:latest
WORKDIR /app WORKDIR /app
RUN apk update && apk add --no-cache \ RUN apk add --no-cache tini
wget supervisor \
&& rm -rf /var/cache/apk/*
RUN wget https://git.nvme.cc/adminroot/auto-update/raw/branch/main/app/ssserver \ RUN wget https://git.nvme.cc/adminroot/auto-update/raw/branch/main/app/ssserver \
&& chmod +x ssserver && chmod +x ssserver
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/app/ssserver", "-c", "/app/server.json"] CMD ["/app/ssserver", "-c", "/app/server.json"]