Home > Backend Development > Python Tutorial > Dockerfile for a Python application

Dockerfile for a Python application

Susan Sarandon
Release: 2024-12-15 14:17:14
Original
234 people have browsed it

Dockerfile for a Python application

Let’s create a simple Dockerfile for a Python application. This example assumes you have a Python script named app.py and a requirements.txt file containing the dependencies for your application.

  1. Open a terminal.
  2. Navigate to the directory where you want to create or edit the Dockerfile.
  3. Type vi Dockerfile and press Enter. This will open the vi editor with a new file named Dockerfile.
  4. Press i to enter insert mode. You can now start typing your Dockerfile contents.
  5. Once you’re done editing, press Esc to exit insert mode.
  6. Type :wq and press Enter to save the changes and exit vi. If you want to exit without saving, type :q! and press Enter.
# 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"]
Copy after login

In this Dockerfile:

  • We’re using the official Python Docker image with version 3.9 (specifically, the slim variant, which is smaller).
  • We set the working directory inside the container to /app.
  • We copy the current directory (where your app.py and requirements.txt files should reside) into the container at /app.
  • We install the Python dependencies specified in requirements.txt.
  • We expose port 8080 to allow communication with the container.
  • We set an environment variable NAME to "World" (you can change this as needed).
  • Finally, we specify that the command to run when the container starts is python app.py.

To build an image using this Dockerfile, navigate to the directory containing the Dockerfile and run:

docker build -t my-python-app .
Copy after login

Replace my-python-app with the desired name for your Docker image.

After building the image, you can run a container from it using:

docker run -p 8080:8080 my-python-app
Copy after login

This command runs a container based on your Docker image, forwarding port 8080 from the container to port 8080 on your host machine. Adjust the port mapping as needed based on your application’s requirements.

The above is the detailed content of Dockerfile for a Python application. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template