File size: 373 Bytes
ca217c9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # 使用官方 Python 基础镜像
FROM python:3.9-slim
# 设置工作目录
WORKDIR /app
# 复制依赖文件并安装依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY . .
# 暴露 Streamlit 默认端口
EXPOSE 8501
# 启动 Streamlit 应用
CMD ["streamlit", "run", "bitbcpy.py", "--server.address=0.0.0.0"]
|