mirror of
https://github.com/onestardao/WFGY.git
synced 2026-04-28 11:40:07 +00:00
11 lines
224 B
Docker
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"]
|