Python 应用程序的 Dockerfile
让我们为 python 应用程序创建一个简单的 dockerfile。此示例假设您有一个名为 app.py 的 python 脚本和一个包含应用程序依赖项的requirements.txt 文件。
- 打开终端。
- 导航到要创建或编辑 dockerfile 的目录。
- 输入 vi dockerfile 并按 enter。这将打开 vi 编辑器,其中包含一个名为 dockerfile 的新文件。
- 按 i 进入插入模式。您现在可以开始输入 dockerfile 内容。
- 完成编辑后,按 esc 退出插入模式。
- 输入 :wq 并按 enter 键保存更改并退出 vi。如果您想退出而不保存,请输入 :q!并按 enter 键。
# use an official python runtime as a parent imagefrom python:3.9-slim# set the working directory in the containerworkdir /app# copy the current directory contents into the container at /appcopy . /app# install any needed dependencies specified in requirements.txtrun pip install --no-cache-dir -r requirements.txt# make port 8080 available to the world outside this containerexpose 8080# define environment variableenv name world# run app.py when the container launchescmd ["python", "app.py"]
在此 dockerfile 中:
要使用此 dockerfile 构建映像,请导航到包含 dockerfile 的目录并运行:
docker build -t my-python-app .
将 my-python-app 替换为 docker 镜像所需的名称。
构建镜像后,您可以使用以下命令运行容器:
docker run -p 8080:8080 my-python-app
此命令运行一个基于您的 docker 映像的容器,将端口 8080 从容器转发到主机上的端口 8080。根据您的应用程序的要求调整端口映射。
立即学习“Python免费学习笔记(深入)”;