25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

23 satır
421 B

FROM python:3.7
WORKDIR /artline
COPY requirements.txt ./requirements.txt
COPY ArtLine_650.pkl ./ArtLine_650.pkl
COPY app.py ./app.py
COPY templates/* ./templates/
COPY result/* ./result/
COPY tmp/* ./tmp/
COPY core/* ./core/
RUN pip3 --no-cache-dir --trusted-host=mirrors.aliyun.com install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ --verbose
EXPOSE 5000
ENTRYPOINT ["python3","app.py"]