proxy-tunnel / Dockerfile
tanbushi's picture
cleanup: 移除调试代码和未使用的wstunnel下载
54c36c0
Raw
History Blame Contribute Delete
180 Bytes
FROM alpine:3.19
RUN apk add --no-cache python3
RUN adduser -D -u 1000 user
USER user
COPY --chown=user server.py /app/server.py
EXPOSE 7860
CMD ["python3", "/app/server.py"]