next-playground's picture
Create Dockerfile
e02dc9e verified
raw
history blame
291 Bytes
# 使用官方 Python 运行时作为父镜像
FROM python:3.10-slim
# 设置工作目录
WORKDIR /app
# 将代码复制到容器中
COPY . /app
# 安装依赖
RUN pip install --no-cache-dir -r requirements.txt
# 暴露端口
EXPOSE 5000
# 运行应用程序
CMD ["python", "./app.py"]