Gunicorn自行运行,但不在docker容器中运行

时间:2019-02-04 02:34:29

标签: python docker flask gunicorn

我正在尝试在Docker容器中运行Gunicorn,这是我的Docker文件

FROM python:3.6-alpine

RUN pip install gunicorn

COPY . /app

EXPOSE 8000


ENTRYPOINT ["gunicorn", "-c", "/app/etc/gunicorn.py", "backend:app"]

我尝试将backend:appapp:app app:backend等互换 但没有任何作用,它总是会出错并输出

Failed to find application object 'app' in 'app'

构建后,我运行:

docker run -it -p 8000:8000 backend:latest bash

这里是我要复制到/app的文件夹结构。

│   main.py
│   requirements.txt
│
├───backend
│   │   __init__.py
│   │
│   ├───cards
│   │      cards_views.py
│   │      __init__.py
│   │
│
└───etc
        gunicorn.py
        nginx.conf

如果我跑步:

gunicorn -c /backend-flask/etc/gunicorn.py backend:app

在容器外部,它运行完美。因此,这肯定与我的文件夹结构有关,但我无法弄清楚。

1 个答案:

答案 0 :(得分:0)

添加:

pip install -r /app/requirements.txt

解决Dockerimage文件的问题,该问题并使用:

docker run -it --entrypoint=sh [my container]

最终的dockerfile看起来像:

FROM python:3.6-alpine

RUN pip install gunicorn

COPY . /app

RUN pip install -r /app/requirements.txt

EXPOSE 8000


ENTRYPOINT ["gunicorn", "-c", "/app/etc/gunicorn.py", "backend:app"]