top of page
Writer's picturevP

Lab 10 - Crafting Custom Base Images with Docker - Day 83

Welcome back to the #90DaysOfDevOps series! On Day 83, we'll be discussing about using Docker to create custom base images. This project is an exciting step towards enhancing your DevOps skills, as it involves building foundational images that can be tailored for a variety of applications. Today, we'll guide you through the process of crafting custom Docker images with specific dependencies and configurations. So, grab your favorite beverage, open your terminal, and let's get started!


Why Custom Base Images?

Before we jump into the technical details, let's quickly understand the significance of creating custom base images. Docker images serve as the blueprint for your applications, containing everything needed to run them, from the code to dependencies. While Docker Hub offers a plethora of pre-built images, crafting your own allows for greater control and customization.


Tools of the Trade: Docker

Our weapon of choice for this adventure is Docker, a powerful platform for automating the deployment of applications inside lightweight, portable containers. If you haven't installed Docker yet, visit the official Docker website to download and set it up on your machine.

Now, let's look at the steps to create your custom base image.


Step 1: Dockerfile - The Blueprint for Images

A Dockerfile is like a recipe that instructs Docker on how to build your image. Create a new file named Dockerfile in your project directory and start by choosing a base image. For instance, if you're working with Python, you might begin with the official Python image:

# 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 packages specified in requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

# Define environment variable
ENV NAME World

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

This example assumes you have a requirements.txt file listing your Python dependencies and an app.py file as your application entry point.


Step 2: requirements.txt - Specify Dependencies

Create a requirements.txt file in the same directory as your Dockerfile. List all the dependencies your application needs, each on a new line. For example:

Flask==2.0.1
requests==2.26.0

Step 3: Build Your Image

Open your terminal, navigate to the project directory, and run the following command to build your custom image:

docker build -t my-custom-image:latest .

Replace my-custom-image with your preferred image name.


Step 4: Run Your Container

Once the image is built, it's time to spin up a container:

docker run -p 4000:80 my-custom-image

This command maps port 4000 on your host to port 80 in the container. Adjust the ports based on your application's needs.


Congratulations! You've successfully created a custom base image tailored to your application's requirements. Feel free to experiment with different base images, configurations, and application setups to enhance your Docker expertise.


Building custom Docker images empowers you to take control of your application environment. It's a crucial skill in the DevOps toolkit, allowing for flexibility and consistency across deployments.


Stay tuned for more DevOps adventures, and happy coding!


*** Explore | Share | Grow ***

9 views0 comments

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page