添加 Dockerfile

This commit is contained in:
2025-11-02 08:01:29 -08:00
commit 9b4fbe57ee

12
Dockerfile Normal file
View File

@@ -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"]