WFGY/Dockerfile
2025-06-07 20:10:28 +08:00

11 lines
224 B
Docker

---
```dockerfile
# Dockerfile
FROM python:3.10-slim
WORKDIR /workspace
COPY . /workspace
RUN pip install --upgrade pip && pip install -r requirements.txt && pip install -e .
ENTRYPOINT ["bash","reproduce.sh"]