testStreamlit / Dockerfile
leonsimon23's picture
Update Dockerfile
c0c040b verified
raw
history blame contribute delete
672 Bytes
# 使用官方Python基础镜像
FROM python:3.9-slim
# 安装git
RUN apt-get update && apt-get install -y git
# 设置工作目录
WORKDIR /app
# 克隆GitHub仓库
# 注意:替换下面的仓库URL为你的实际仓库地址
RUN git clone https://github.com/leoncool23/testStreamlit.git .
# 安装依赖
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["streamlit", "run", "app.py", "--server.port=7860"]
# 暴露Streamlit默认端口
#EXPOSE 8501
# 设置环境变量
# ENV PYTHONUNBUFFERED=1
# 运行Streamlit应用
#CMD ["streamlit", "run", "app.py"]
#CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]