detr-resnet-101/Dockerfile

14 lines
253 B
Docker
Raw Normal View History

2023-04-23 09:20:15 +00:00
FROM python:3.7.4-slim
WORKDIR /app
COPY requirements.txt /app
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/
RUN pip3 install --trusted-host pypi.python.org -r requirements.txt
COPY . /app
CMD ["python", "app.py"]