MathematicalModelingAgent commited on
Commit
3fedf34
·
1 Parent(s): cadcd22

update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -26,11 +26,11 @@ USER user
26
  # 拷贝应用文件并安装依赖
27
  COPY --chown=user . $HOME/app
28
 
29
- WORKDIR $HOME/app/hf_app
30
-
31
  RUN pip install --no-cache-dir --upgrade pip \
32
  && pip install --no-cache-dir streamlit \
33
  && pip install --no-cache-dir -r requirements.txt
34
 
35
- # 运行 Streamlit 应用
 
 
36
  CMD ["streamlit", "run", "app.py", "--server.port", "8200"]
 
26
  # 拷贝应用文件并安装依赖
27
  COPY --chown=user . $HOME/app
28
 
 
 
29
  RUN pip install --no-cache-dir --upgrade pip \
30
  && pip install --no-cache-dir streamlit \
31
  && pip install --no-cache-dir -r requirements.txt
32
 
33
+ WORKDIR $HOME/app/hf_app
34
+
35
+ # 运行 Streamlit 应用
36
  CMD ["streamlit", "run", "app.py", "--server.port", "8200"]