1223 / Dockerfile
yuoop's picture
Update Dockerfile
24320cc verified
raw
history blame contribute delete
308 Bytes
FROM python:3.9-slim
WORKDIR /code
# 安装依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY . .
# 设置环境变量
ENV PORT=7860
ENV TARGET_DOMAIN="http://datukuai.top:1450"
# 暴露端口
EXPOSE 7860
# 启动命令
CMD ["python", "app.py"]