next-playground's picture
Update Dockerfile
f4b6a0a verified
raw
history blame
437 Bytes
# 使用官方 Python 运行时作为父镜像
FROM python:3.10-slim
# 设置工作目录
WORKDIR /tmp/app
# 将代码复制到容器中
COPY . /tmp/app
# 安装依赖
RUN pip install gunicorn
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install 'numpy==1.26.4'
# 准备文件夹
RUN mkdir separated
# 暴露端口
EXPOSE 5000
# 运行应用程序
CMD ["gunicorn", "-b", "0.0.0.0:5000", "--timeout", "300", "app:app"]