Spaces:
Paused
Paused
File size: 416 Bytes
52ad3b7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | FROM python:3.11-slim
WORKDIR /app
# 安装依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY coinpush.py .
# 暴露端口
EXPOSE 7860
# 设置环境变量
ENV PYTHONUNBUFFERED=1
# 启动 Streamlit
CMD ["streamlit", "run", "coinpush.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.headless=true", "--server.enableXsrfProtection=false"]
|