leonsimon23 commited on
Commit
b3fb19b
·
verified ·
1 Parent(s): 3590003

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -19
Dockerfile CHANGED
@@ -1,30 +1,23 @@
1
- # Use the official Python base image
2
  FROM python:3.9-slim
3
 
4
- # Set the working directory inside the container
5
  WORKDIR /app
6
 
7
- # Install necessary dependencies
8
- RUN apt-get update && apt-get install -y git
9
-
10
- # Clone the repository from GitHub
11
- RUN git clone https://github.com/leoncool23/testhg.git .
12
 
13
- # Create a directory for Matplotlib's configuration
14
- RUN mkdir -p /app/matplotlib_config
15
 
16
- # Set the MPLCONFIGDIR environment variable
17
- ENV MPLCONFIGDIR=/app/matplotlib_config
18
- # Install the required Python packages
19
- COPY requirements.txt .
20
- RUN pip install -r requirements.txt
21
 
22
- # Expose the Streamlit default port
23
  EXPOSE 8501
24
 
25
- # Set environment variables for Streamlit configuration (optional)
26
- ENV STREAMLIT_SERVER_PORT=8501
27
- ENV STREAMLIT_SERVER_HEADLESS=true
28
 
29
- # Run the Streamlit application (assuming app.py is in the root of the cloned repo)
30
  CMD ["streamlit", "run", "app.py"]
 
1
+ # 使用官方Python基础镜像
2
  FROM python:3.9-slim
3
 
4
+ # 设置工作目录
5
  WORKDIR /app
6
 
7
+ # 复制requirements文件到容器
8
+ COPY requirements.txt .
 
 
 
9
 
10
+ # 安装项目依赖
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ # 复制项目文件到容器
14
+ COPY . .
 
 
 
15
 
16
+ # 暴露Streamlit默认端口
17
  EXPOSE 8501
18
 
19
+ # 设置环境变量
20
+ ENV PYTHONUNBUFFERED=1
 
21
 
22
+ # 运行Streamlit应用
23
  CMD ["streamlit", "run", "app.py"]