Flask应用程序请求未通过Docker容器

问题描述 投票:2回答:1

我已经使用Python(3.7.4)和Flask(hello.py)编写了一个«Hello World»应用程序:

from flask import Flask

app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, World!'

if __name__ == '__main__':
    app.run(host='0.0.0.0')

我使用以下版本的Flask和Gunicorn(requirements.txt):

Flask==1.1.1
gunicorn==19.9.0

我将按照以下方式安装:

$ sudo pip install -r requirements.txt

因为我在Arch Linux上运行示例,所以pip实际上是pip3

当我启动应用程序时:

$ gunicorn hello:app

该应用程序按预期工作:

$ curl localhost:8000
Hello, World!

现在我想使用Docker(版本19.03.3-ce)运行它,为此我已经写了这个Dockerfile

FROM python:3.7.4

RUN mkdir /app
WORKDIR /app

COPY requirements.txt /app/
RUN pip install -r requirements.txt

COPY hello.py /app

EXPOSE 8000

CMD ["gunicorn", "hello:app", "--log-file=-"]

我构建映像并使用shell脚本(run.sh)运行容器:

#!/bin/sh

docker build . -t flaskdemo
docker run -it --rm --name flaskdemoapp -p 8000:8000 flaskdemo

按预期工作:

$ ./run.sh
Sending build context to Docker daemon  66.05kB
Step 1/8 : FROM python:3.7.4
 ---> 9fa56d0addae
Step 2/8 : RUN mkdir /app
 ---> Using cache
 ---> 81a38303aabd
Step 3/8 : WORKDIR /app
 ---> Using cache
 ---> a73abfac4cdf
Step 4/8 : COPY requirements.txt /app/
 ---> Using cache
 ---> e7507f42bbae
Step 5/8 : RUN pip install -r requirements.txt
 ---> Using cache
 ---> 06c4adb1310b
Step 6/8 : COPY hello.py /app
 ---> Using cache
 ---> fa5d374f6c93
Step 7/8 : EXPOSE 8000
 ---> Using cache
 ---> df5e0d5ada7d
Step 8/8 : CMD ["gunicorn", "hello:app", "--log-file=-"]
 ---> Using cache
 ---> 08babb3f604a
Successfully built 08babb3f604a
Successfully tagged flaskdemo:latest
[2019-10-19 13:09:43 +0000] [1] [INFO] Starting gunicorn 19.9.0
[2019-10-19 13:09:43 +0000] [1] [INFO] Listening at: http://127.0.0.1:8000 (1)
[2019-10-19 13:09:43 +0000] [1] [INFO] Using worker: sync
[2019-10-19 13:09:43 +0000] [8] [INFO] Booting worker with pid: 8

不幸的是,请求没有到达容器:

$ curl localhost:8000
curl: (56) Recv failure: Connection reset by peer

容器中没有其他日志行。

Docker通常在我的机器上运行良好。例如,当我运行httpd

$ docker run -p 8080:80 httpd

我收到了我的请求的回复:

$ curl localhost:8080
<html><body><h1>It works!</h1></body></html>

所以我想我的Dockerfile或运行容器的方式一定有问题。

PS:随时从my GitHub repo克隆代码>

我已经使用Python(3.7.4)和Flask(hello.py)编写了一个«Hello World»应用程序:从烧瓶导入Flask app = Flask(__ name__)@ app.route('/')def hello_world():返回“你好,世界!”如果...

python docker flask gunicorn
1个回答
0
投票

我认为您的Dockerfile应该看起来像这样:

© www.soinside.com 2019 - 2024. All rights reserved.