diff --git a/Dockerfile_bak b/Dockerfile_bak deleted file mode 100644 index 25c9de5..0000000 --- a/Dockerfile_bak +++ /dev/null @@ -1,18 +0,0 @@ -FROM python:3.7.16 -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 . -# RUN pip install pip==23.0.1 -RUN pip install setuptools==46.1.3 -RUN pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ -COPY ./app /app -EXPOSE 5000 -CMD ["gunicorn", "--bind", ":5000", "server:app"] diff --git a/build.sh b/build.sh index 84bca44..3714553 100755 --- a/build.sh +++ b/build.sh @@ -1,3 +1,3 @@ # /usr/bash -docker build --tag hpds-road-detection:1.0.0 . +docker build --tag hpds-bridge-detection:1.0.0 . diff --git a/docker-compose.yml b/docker-compose.yml index 2526ba2..eb2b2b9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,13 +1,13 @@ version: "3.6" services: hpds-python-model: - container_name: hpds-road-detection-model - image: hpds-road-detection:1.0.0 + container_name: hpds-bridge-detection-model + image: hpds-bridge-detection:1.0.0 networks: - hpds-network restart: always ports: - - 8000:5000 + - "8002:5000" volumes: - /usr/local/cuda/lib64:/usr/local/cuda/lib64