Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +12 -19
Dockerfile
CHANGED
@@ -1,30 +1,23 @@
|
|
1 |
-
#
|
2 |
FROM python:3.9-slim
|
3 |
|
4 |
-
#
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
#
|
8 |
-
|
9 |
-
|
10 |
-
# Clone the repository from GitHub
|
11 |
-
RUN git clone https://github.com/leoncool23/testhg.git .
|
12 |
|
13 |
-
#
|
14 |
-
RUN
|
15 |
|
16 |
-
#
|
17 |
-
|
18 |
-
# Install the required Python packages
|
19 |
-
COPY requirements.txt .
|
20 |
-
RUN pip install -r requirements.txt
|
21 |
|
22 |
-
#
|
23 |
EXPOSE 8501
|
24 |
|
25 |
-
#
|
26 |
-
ENV
|
27 |
-
ENV STREAMLIT_SERVER_HEADLESS=true
|
28 |
|
29 |
-
#
|
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"]
|