Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

23 lignes
421 B

il y a 3 ans
  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"]