Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 rader
421 B

3 år sedan
  1. FROM python:3.7
  2. WORKDIR /artline
  3. COPY requirements.txt ./requirements.txt
  4. COPY ArtLine_650.pkl ./ArtLine_650.pkl
  5. COPY app.py ./app.py
  6. COPY templates/* ./templates/
  7. COPY result/* ./result/
  8. COPY tmp/* ./tmp/
  9. COPY core/* ./core/
  10. RUN pip3 --no-cache-dir --trusted-host=mirrors.aliyun.com install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ --verbose
  11. EXPOSE 5000
  12. ENTRYPOINT ["python3","app.py"]