bhyg-decomp/Dockerfile
2024-07-01 15:26:46 +08:00

10 lines
314 B
Docker

FROM python:3.12-slim
WORKDIR /app
#ENV RUSTUP_DIST_SERVER="https://rsproxy.cn"
#ENV RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"
#RUN curl -sSf https://sh.rustup.rs | sh -s -- -y
COPY requirements.txt .
RUN python -m pip install --no-cache-dir -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple