Compare commits

..

2 Commits

Author SHA1 Message Date
chenxingming e55cb11f59 包名修改 2023-04-20 14:13:29 +08:00
chenxingming 7de0a78499 道路 docker 打包 2023-04-19 18:08:17 +08:00
4 changed files with 10 additions and 25 deletions

View File

@ -1,13 +1,15 @@
FROM python:3.7.16
RUN pip install gunicorn==20.1.0
RUN pip install setuptools==46.1.3
FROM nvcr.io/nvidia/l4t-tensorflow:r32.6.1-tf2.5-py3
RUN apt-get install make g++ gcc
RUN pip3 install gunicorn
RUN pip3 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/
RUN pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
COPY ./app /app
EXPOSE 5000
CMD ["gunicorn", "--bind", ":5000", "server:app"]

View File

@ -1,16 +0,0 @@
FROM nvcr.io/nvidia/l4t-tensorflow:r32.6.1-tf2.5-py3
RUN apt-get install make g++ gcc
RUN pip3 install gunicorn
RUN pip3 install setuptools==46.1.3
RUN mkdir -p /app
WORKDIR /app
COPY requirements.txt /app
RUN pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
COPY ./app /app
EXPOSE 5000
CMD ["gunicorn", "--bind", ":5000", "server:app"]

View File

@ -1,6 +1,6 @@
version: "3.6"
services:
hpds-python-model:
hpds-road-detection-model:
container_name: hpds-road-detection-model
image: hpds-road-detection:1.0.0
networks:

View File

@ -1,5 +1,4 @@
Flask==1.1.2
numpy==1.19.5
numpy==1.18.4
Pillow==7.1.2
six==1.15.0
tensorflow==2.5.1