Docker for Mac 终端下用docker build -t friendlyhello . 的问题

发布于 2022-09-05 20:21:38 字数 1928 浏览 18 评论 0

1.前几天我看官方文档,在第二部分,写好了app.pydockerfile,还有requirements.txt.

2.运行时输入:docker bulid -t dockerdemo .

最后报错。不知道为什么,大致记得报错提示是docker Collecting Flask (from -r requirements.txt (line 1))

3.然后接着现在输入docker bulid -t friendlyhello .就运行通过了。

求大佬解释这其中原因。

运行环境:Docker for Mac
版本:Docker version 17.06.1-ce, build 874a737

重点:app.pydockerfile还有requirements.txt都没有任何变化。

附上app.py代码

from flask import Flask
from redis import Redis, RedisError
import os
import socket

# Connect to Redis
redis = Redis(host="redis", db=0, socket_connect_timeout=2, socket_timeout=2)

app = Flask(__name__)

@app.route("/")
def hello():
    try:
        visits = redis.incr("counter")
    except RedisError:
        visits = "<i>cannot connect to Redis, counter disabled</i>"

    html = "<h3>Hello {name}!</h3>" \
           "<b>Hostname:</b> {hostname}<br/>" \
           "<b>Visits:</b> {visits}"
    return html.format(name=os.getenv("NAME", "world"), hostname=socket.gethostname(), visits=visits)

if __name__ == "__main__":
    app.run(host='0.0.0.0', port=80)

附上dockerfile代码

# Use an official Python runtime as a parent image
FROM python:2.7-slim

# Set the working directory to /app
WORKDIR /app

# Copy the current directory contents into the container at /app
ADD . /app

# Install any needed packages specified in requirements.txt
RUN pip install -r requirements.txt

# Make port 80 available to the world outside this container
EXPOSE 80

# Define environment variable
ENV NAME World

# Run app.py when the container launches
CMD ["python", "app.py"]

附上requirements.txt

Flask
Redis

求大佬解释其中问题

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌无敌 2022-09-12 20:21:39

build的会执行Run指令,如果遇到网络超时,或者啥的build会挂掉,日志不全,大概可能就是这些问题

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文