road_detection/Dockerfile

18 lines
557 B
Docker
Raw Normal View History

2023-04-18 13:41:37 +08:00
FROM python:3.7.16
2023-03-10 22:06:22 +08:00
ENV PYTHONUNBUFFERED 1
RUN sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list
RUN cat /etc/apt/sources.list
RUN apt-get update \
&& apt-get install -y make \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir -p /app
WORKDIR /app
COPY requirements.txt /app
RUN python -m venv .
2023-04-18 10:31:55 +08:00
RUN pip install pip==23.0.1
2023-03-10 22:06:22 +08:00
RUN pip install setuptools==46.1.3
2023-04-18 10:31:55 +08:00
RUN pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
2023-03-10 22:06:22 +08:00
COPY ./app /app
EXPOSE 5000
CMD ["gunicorn", "--bind", ":5000", "server:app"]