commit 9b4fbe57ee2ed290183d50502965840c74193c64 Author: adminroot Date: Sun Nov 2 08:01:29 2025 -0800 添加 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1585957 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM alpine:latest + +WORKDIR /app + +RUN apk update && apk add --no-cache \ + wget supervisor \ + && rm -rf /var/cache/apk/* + +RUN wget https://git.nvme.cc/adminroot/auto-update/raw/branch/main/app/ssserver \ + && chmod +x ssserver + +CMD ["/app/ssserver", "-c", "/app/server.json"]