File size: 415 Bytes
e02dc9e d2b09a6 e02dc9e d7c7668 e02dc9e d7c7668 e02dc9e 0b414bb bd4c5a7 0b414bb fb8dcda e02dc9e e87bba9 f4b6a0a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# 使用官方 Python 运行时作为父镜像
FROM python:3.10
# 设置工作目录
WORKDIR /app
# 将代码复制到容器中
COPY . /app
# 安装依赖
RUN pip install --no-cache-dir gunicorn
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir 'numpy==1.26.4'
# 暴露端口
EXPOSE 5000
# 运行应用程序
CMD ["gunicorn", "-b", "0.0.0.0:5000", "--timeout", "300", "app:app"] |