root 1 anno fa
parent
commit
e889ac26f2
1 ha cambiato i file con 4 aggiunte e 3 eliminazioni
  1. 4 3
      deploy/docker_compose/Dockerfile

+ 4 - 3
deploy/docker_compose/Dockerfile

@@ -4,13 +4,14 @@ FROM paddlepaddle/paddle:2.5.0-gpu-cuda12.0-cudnn8.9-trt8.6
 ARG work_dir=/app
 ARG work_dir=/app
 ENV FLASK_APP_PATH=${work_dir}/server.py
 ENV FLASK_APP_PATH=${work_dir}/server.py
 ENV FLASK_PORT=5000
 ENV FLASK_PORT=5000
-SHELL ["/bin/bash", "--login", "-c"]
+# SHELL ["/bin/bash", "--login", "-c"]
 WORKDIR ${work_dir}
 WORKDIR ${work_dir}
 COPY ./ ${work_dir}
 COPY ./ ${work_dir}
 COPY ./entrypoint.sh /
 COPY ./entrypoint.sh /
-RUN chmod +x /entrypoint.sh
+# RUN chmod +x /entrypoint.sh
 RUN pip3 install --upgrade pip
 RUN pip3 install --upgrade pip
 # RUN python -m pip install -r requirements.txt -U -i https://mirror.baidu.com/pypi/simple
 # RUN python -m pip install -r requirements.txt -U -i https://mirror.baidu.com/pypi/simple
 ## Recommendation for those in China
 ## Recommendation for those in China
 RUN pip3 install -r requirements.txt -U -i https://mirror.baidu.com/pypi/simple
 RUN pip3 install -r requirements.txt -U -i https://mirror.baidu.com/pypi/simple
-ENTRYPOINT [ "/entrypoint.sh" ]
+# ENTRYPOINT [ "/entrypoint.sh" ]
+RUN python server.py