让我们为 Python 应用程序创建一个简单的 Dockerfile。此示例假设您有一个名为 app.py 的 Python 脚本和一个包含应用程序依赖项的requirements.txt 文件。
# Use an official Python runtime as a parent image FROM python:3.9-slim # Set the working directory in the container WORKDIR /app # Copy the current directory contents into the container at /app COPY . /app # Install any needed dependencies specified in requirements.txt RUN pip install --no-cache-dir -r requirements.txt # Make port 8080 available to the world outside this container EXPOSE 8080 # Define environment variable ENV NAME World # Run app.py when the container launches CMD ["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 应用程序的 Dockerfile的详细内容。更多信息请关注PHP中文网其他相关文章!