Browse Source

awg commit dockerFile

anweiguo 6 months ago
parent
commit
0764165ef0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -1,5 +1,5 @@
 # 使用官方 Python 镜像作为基础镜像
-FROM 192.168.1.36:5000/python:3.7
+FROM 192.168.1.36:5000/python:3.7.16
 ENV LANG=en_US.UTF-8
 # 设置工作目录
 WORKDIR /app
@@ -11,6 +11,6 @@ COPY . /app
 RUN set -ex \
     && pip3 install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
 # 设置 ENTRYPOINT 为 Python 脚本
-ENTRYPOINT ["python", "processing_limit_power_by_agcavc.py"]
+ENTRYPOINT ["python", "run_all.py"]
 # 执行 Python 脚本
 CMD []