sone-latest / Dockerfile
yangtb24's picture
Update Dockerfile
25cae95 verified
raw
history blame
455 Bytes
# 使用官方 Python 运行时作为父镜像
FROM python:3.9-slim-buster
# 设置工作目录为 /app
WORKDIR /app
# 将当前目录内容复制到容器的 /app 中
COPY . /app
# 安装 requirements.txt 中指定的任何所需软件包
RUN pip install --no-cache-dir -r requirements.txt
# 使 7860 端口可供此容器外的世界使用
EXPOSE 7860
# 定义环境变量
ENV NAME World
# 在容器启动时运行 app.py
CMD ["python", "app.py"]