road_detection/Dockerfile

14 lines
305 B
Docker

FROM python:3.7.16
RUN pip install gunicorn==20.1.0
RUN pip install setuptools==46.1.3
RUN mkdir -p /app
WORKDIR /app
COPY requirements.txt /app
RUN pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
COPY ./app /app
EXPOSE 5000
CMD ["gunicorn", "--bind", ":5000", "server:app"]