shap-e/Dockerfile

11 lines
184 B
Docker
Raw Normal View History

2023-05-12 02:18:27 +00:00
FROM python:3.11
WORKDIR /app
COPY . /app
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple
RUN pip install -r requirements.txt
CMD ["python", "app.py"]