Dockerfile构建一个Python Flask 镜像
作者:小叶柏杉 时间:2021-11-12 10:04:01
1.Python 程序
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
2.Dockerfile
FROM python:3.9.5-slim
COPY app.py /src/app.py
RUN pip install flask
WORKDIR /src
ENV FLASK_APP=app.py
EXPOSE 5000
CMD ["flask", "run", "-h", "0.0.0.0"]
3.开始构建一个小的demo
PS E:\images> docker image build -f .\flask_dockerfile -t flask_py .
[+] Building 80.3s (9/9) FINISHED
=> [internal] load build definition from flask_dockerfile 0.0s
=> => transferring dockerfile: 38B 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> [internal] load metadata for docker.io/library/python:3.9.5-slim 12.7s
=> [internal] load build context 0.0s
=> => transferring context: 152B 0.0s
=> [1/4] FROM docker.io/library/python:3.9.5-slim@sha256:9828573e6a0b02b6d0ff0bae0716b027aa21cf8e59ac18a76724d2 47.4s
=> => resolve docker.io/library/python:3.9.5-slim@sha256:9828573e6a0b02b6d0ff0bae0716b027aa21cf8e59ac18a76724d21 0.0s
=> => sha256:f42d92068b29045b6893da82032ca4fcf96193be5dcbdcfcba948489efa9e832 1.37kB / 1.37kB 0.0s
=> => sha256:c71955050276b1e3b4be7e29089e4babeb39957981d162a3d422e084601105d3 7.63kB / 7.63kB 0.0s
=> => sha256:b4d181a07f8025e00e0cb28f1cc14613da2ce26450b80c54aea537fa93cf3bda 27.15MB / 27.15MB 44.7s
=> => sha256:a1111a8f2ec3f3a8ee44a123047349a70f87d1cfebb9e48b06520d0eed436a71 2.77MB / 2.77MB 9.3s
=> => sha256:445d04774519ca200f5c48fd028beaafb49ca763dd58767f1ae7e3933306394c 10.93MB / 10.93MB 32.9s
=> => sha256:9828573e6a0b02b6d0ff0bae0716b027aa21cf8e59ac18a76724d216bab7ef04 1.86kB / 1.86kB 0.0s
=> => sha256:24f3f85d41f368fc2dcd569b181ef6cd4c2bee419a32853be2f8c8964cee34af 235B / 235B 11.9s
=> => sha256:d299f7fb612d59c3d87fcb17028a25c02e94722ef6235e60537a12d0e312abfc 2.64MB / 2.64MB 17.4s
=> => extracting sha256:b4d181a07f8025e00e0cb28f1cc14613da2ce26450b80c54aea537fa93cf3bda 1.3s
=> => extracting sha256:a1111a8f2ec3f3a8ee44a123047349a70f87d1cfebb9e48b06520d0eed436a71 0.2s
=> => extracting sha256:445d04774519ca200f5c48fd028beaafb49ca763dd58767f1ae7e3933306394c 0.5s
=> => extracting sha256:24f3f85d41f368fc2dcd569b181ef6cd4c2bee419a32853be2f8c8964cee34af 0.0s
=> => extracting sha256:d299f7fb612d59c3d87fcb17028a25c02e94722ef6235e60537a12d0e312abfc 0.2s
=> [2/4] COPY app.py /src/app.py 0.1s
=> [3/4] RUN pip install flask 19.8s
=> [4/4] WORKDIR /src 0.0s
=> exporting to image 0.2s
=> => exporting layers 0.2s
=> => writing image sha256:0567a371be3f084fb413092b480735083c224023f8801fc723e228a021ea54b1 0.0s
=> => naming to docker.io/library/flask_py
PS E:\images> docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
flask_py latest 0567a371be3f 10 minutes ago 125MB
PS E:\images> docker container run -d -p 5000:5000 0567a371be3f
ceb69c7ce778ebcf48a0ad91eb16902814cb20470ddb16d0ba795baa18cf4b01
访问浏览器本地ip:http://127.0.0.1:5000/
显示Hello, World!
查看容器日志:
PS E:\images> docker logs ceb69c7ce778
* Serving Flask app 'app.py' (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
* Running on all addresses.
WARNING: This is a development server. Do not use it in a production deployment.
* Running on http://172.17.0.2:5000/ (Press CTRL+C to quit)
PS E:\images> docker logs ceb69c7ce778
* Serving Flask app 'app.py' (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
* Running on all addresses.
WARNING: This is a development server. Do not use it in a production deployment.
* Running on http://172.17.0.2:5000/ (Press CTRL+C to quit)
172.17.0.1 - - [13/Jan/2022 08:50:31] "GET / HTTP/1.1" 200 -
172.17.0.1 - - [13/Jan/2022 08:50:31] "GET /favicon.ico HTTP/1.1" 404 -
来源:https://blog.csdn.net/weixin_48447848/article/details/122476888
标签:Dockerfile,Python,Flask,镜像
0
投稿
猜你喜欢
网页特效文字之—沙粒字
2023-07-06 07:32:10
TensorFlow Autodiff自动微分详解
2021-06-02 10:33:02
Windows下MySQL 5.7无法启动的解决方法
2024-01-26 02:32:31
详解Go语言如何使用标准库sort对切片进行排序
2024-04-30 10:07:53
Python进程间通信方式
2021-12-03 03:08:39
python整小时 整天时间戳获取算法示例
2021-02-11 10:27:33
python中的&&及||的实现示例
2022-02-06 19:53:42
Python如何通过subprocess调用adb命令详解
2023-03-30 13:10:19
Python中的pprint打印模块
2023-04-22 12:11:18
交互设计杂七杂八
2010-09-25 18:41:00
谦逊编程(翻译整理)
2009-07-28 12:52:00
XHTML 1.0:标记新的开端
2023-08-04 21:59:30
关于python3的ThreadPoolExecutor线程池大小设置
2023-12-05 13:37:57
python语言基本语句用法总结
2023-07-03 01:26:34
Python金融数据可视化汇总
2023-04-12 21:27:41
pandas取dataframe特定行列的实现方法
2022-03-05 15:51:29
微型设计专用工具Dorado
2011-01-06 12:23:00
使用pyecharts生成Echarts网页的实例
2023-02-22 10:19:42
Python 实现简单的电话本功能
2021-11-16 09:47:58
Python中json.load()和json.loads()有哪些区别
2022-11-09 09:24:05