anime-gan-v2/Dockerfile

13 lines
242 B
Docker

FROM python:3.8.13
WORKDIR /app
COPY . /app
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple
RUN pip install -r requirements.txt
RUN git config --global http.proxy https://ghproxy.com
CMD ["python", "app.py"]