In this tutorial on how to build a Docker image, we will talk about everything from Docker installation, building your first Docker image, what is Dockerfile, the Docker build command, and so much more.

So, you've heard all the buzz about Docker, and you're eager to dive into the world of containerization, huh? You're in the right place!
In this step-by-step guide, we'll walk you through the process of building your first Docker image from scratch. Let's begin!
Contents
Docker Installation
Before we get started, make sure you have Docker installed on your system. Depending on the type of OS you have, go to this link and install your version of the Docker engine.
Docker allows you to create, deploy, and run containers with ease. After you have installed Docker, check if Docker is installed successfully by running:
docker --version
This command and its output will look something like this:

If at any moment you feel stuck, run docker --help to get more information about all the types of commands and their usages.

Revisiting Docker
In a nutshell, Docker is an open-source platform that allows you to develop, ship, and run applications inside lightweight, isolated environments called containers.
Also Read: Docker Commands Cheat Sheet
Revisiting Containers
Containers are like little virtual machines, but they are more efficient and share the same OS kernel of the host system, making them faster and lighter.

Here’s a quick comparison between containerized applications vs virtual machines applications.
Now, let's break it down with an example to make it crystal clear. Imagine you're building a web application using Node.js, and it requires specific dependencies, libraries, and configurations to run correctly.
Traditionally, you would install these dependencies directly on your development machine locally, and that could lead to conflicts with other projects or the system itself when you want to run the same application in your friend’s system or on any other system.
Using Docker, you can package your entire Node.js application, along with its dependencies and configurations, into a single isolated container.
This container encapsulates everything your app needs to run smoothly, independent of the underlying environment.
The beauty of Docker is that you can share this image with your team or deploy it to any other environment that has Docker installed, and it will run consistently without any dependency issues.
If Docker is not installed, or you run into some errors, follow this official troubleshooting guide.
Building Your First Docker Image
Alright, let's jump right in! We'll start by creating a simple Docker image that runs a basic web application using Nginx.
First, create a new directory for your project and navigate into it:
mkdir my-docker-project
cd my-docker-project
Also Read: Docker Image vs Containers
What is Dockerfile and How to Write One?
First and foremost, a Dockerfile is a text file used in Docker. It serves as the blueprint to build a Docker container—a lightweight, portable, and self-sufficient software package that includes everything needed to run an application.
The Dockerfile contains:
A series of instructions that specify how the container image should be constructed.
Instructions correspond to a particular action, like installing software, copying files, setting environment variables, and more.
Then, Docker uses these instructions to create layers within the container image, which helps to optimize storage and speed up the build process.
Open your favorite text editor and create a new file called `Dockerfile` (with no file extension) in the same directory as your `index.html` file.
The Dockerfile has a simple, easy-to-understand syntax. Each instruction represents a layer in the image.
Here's the basic structure of a Dockerfile:
# Use an existing base image
# FROM base_image:tag
# Use a Node.js base image
FROM node:14
# Set the working directory inside the container
WORKDIR /usr/src/app
# Copy package.json and package-lock.json to the container
COPY package*.json ./
# Install app dependencies
# If you are building your code for production
# RUN npm ci --only=production
RUN npm install
# Copy files from the host to the container's working directory
# COPY /path/to/source /app or simple copy everything using COPY ..
COPY . .
# Expose a port to allow external access OR the port your app listens on
# EXPOSE port_number
EXPOSE 80
# Define the command to run the application
# CMD ["command", "to", "start", "your", "app"]
CMD ["node", "app.js"]
Note: use .dockerignore file to avoid node_modules from being copied into your container.
You can use the sample node app and the Dockerfile here.
Also Read: Top 13 Docker Desktop & Docker Alternatives
Docker Build Command
Now that we have our Dockerfile ready, it's time to build the Docker image using the docker build command.
This command takes care of compiling all the instructions in the Dockerfile and creating the final image.
Open your terminal or command prompt, navigate to your project directory (where the Dockerfile is located), and run the following command:
docker build -t my-docker-image .
If this looks complicated to you, let's break down the command:
docker build: Initiates the build process.
-t my-docker-image: Tags the image with the name "my-docker-image" (you can choose any name you prefer).
. : Specifies the build context, which is the current directory containing the Dockerfile and any files required during the build.
The build process will start, and you'll see each step being executed in the terminal. Once it's complete, you should have your Docker image ready!
To verify that your image has been successfully created, you can list all the Docker images on your system: docker images
You can also do a docker ps -a
The above 2 commands are most handy and thus you need to know how they are different from each other. So let's compare `docker ps -a` and `docker images`.
1. docker ps -a
This command lists all the containers on your system, both running and stopped. The `-a` flag stands for "all," meaning it shows all containers, including the ones that are not currently running.
Sample output:

The columns in the output represent:
CONTAINER ID: The unique identifier for each container.
IMAGE: The image used to create the container.
COMMAND: The command that the container runs when started.
CREATED: The time when the container was created.
STATUS: The current state of the container (e.g., running, exited).
PORTS: The exposed ports on the container.
NAMES: The human-readable name given to the container.
2. docker images
This command lists all the available Docker images on your system. Images are the templates used to create containers. When you run a container, it is created from an image.
The output might look like this:

The columns in the output represent:
REPOSITORY: The name of the image's repository.
TAG: The specific version or tag of the image.
IMAGE ID: The unique identifier for the image.
CREATED: The date the image was created.
SIZE: The size of the image.
You should see "my-docker-image" listed among the images.
Next, let's run a container based on our newly built image:
docker run -d -p 8080:80 my-docker-image
In this docker run command:
`-d`: Runs the container in detached mode (in the background).
`-p 8080:80`: Maps port 8080 on the host (your app) to port 80 on the container.
`my-docker-image`: The name of the Docker image to use.
Now you can access your Nginx web server by opening a web browser and navigating to `http://localhost:8080`.
You should see the "["Sunflower","Rose","Lily","Marigold","Orchids"]" message.

Well, congrats you just built an image of your node application, and it is running successfully in a containerized environment.
Optimize Your Docker Image
As you start building more complex applications, the size of your Docker images can quickly become a concern.
As shown above, a simple node app image is of size 883.82M. Bloated images not only consume more disk space but also take longer to transfer and deploy.
Here are a few tips to optimize your Docker image.
Use a Minimal Base Image
Choose a minimal base image that only includes the necessary runtime libraries for your application.
For example, instead of using a generic Linux distribution image, opt for a specialized image like `alpine`, which is known for its small size.
Multi-Stage Builds
If your application requires build tools, using multi-stage builds will help.
This involves using separate build and runtime images, where the build image includes all the tools needed to compile your code, and the final runtime image contains only the compiled artifacts.
This approach helps to keep the final image small and lean.
Also Read: Docker Swarm vs Kubernetes
Minimize Layers
It helps reduce the number of intermediate container layers created during the build process, leading to smaller and more efficient Docker images.
Each RUN command in a Dockerfile creates a new layer in the container image. Intermediate layers can contain temporary files and other artifacts, which increases the image size.
Here's an example of consolidating multiple RUN commands into one:
RUN apt-get update
RUN apt-get install -y python3
RUN apt-get install -y curl
RUN curl -o app.tar.gz https://example.com/app.tar.gz
RUN tar -xzvf app.tar.gz
RUN rm app.tar.gz
After consolidation:
RUN apt-get update \
&& apt-get install -y python3 curl \
&& curl -o app.tar.gz https://example.com/app.tar.gz \
&& tar -xzvf app.tar.gz \
&& rm app.tar.gz
Utilize Docker-Slim
Docker-Slim is a tool that shrinks your image by launching a temporary container of your image and identifying the files that are actually used by your application in that container (through static + dynamic analysis).
Then, docker-slim creates a fresh single-layer image with just the files and directories that were actually used.
Docker-slim is therefore the most successful strategy of those mentioned here, but it is not without restrictions!
Also Read: Container Runtimes to Choose From
Host Your Image
Now that you have built your Docker image, you might want to share it with others or deploy it on different machines. There are several ways to host your Docker image.
Docker Hub Registry
Docker Hub is a public registry that allows you to store and share Docker images with the community. To push your image to Docker Hub, follow these steps:
1. Log in to Docker Hub using the docker login command.
2. Tag your image with your Docker Hub username and repository name:
docker tag my-docker-image your-docker-hub-username/my-repo-name:tag
3. Push the image to Docker Hub, using the following command:
docker push your-docker-hub-username/my-repo-name:tag
Now, your Docker image is available on Docker Hub for others to use and pull.
Local Registry Server
If you want to host your Docker images privately within your organization or on your local network, you can set up a local Docker registry server.
The registry server acts as a central repository for your images.
To create a local registry, you can use the official Docker Registry image:
docker run -d -p 5000:5000 --name local-registry registry:latest
After setting up the local registry, you can tag and push your image to it similarly to how you did for Docker Hub:
docker tag my-docker-image localhost:5000/my-repo-name:tag
docker push localhost:5000/my-repo-name:tag
Save/Load Images
Another way to share your Docker image is by saving it as a tarball and then loading it on another machine.
To save your image, run the following command:
docker save -o my-docker-image.tar my-docker-image
And to load the image on another machine:
docker load -i my-docker-image.tar
Also Read: Docker Cleanup Tutorial
Dockerfile Best Practices
Writing an efficient and secure Dockerfile is crucial for building reliable Docker images.
Here are some Dockerfile best practices to keep in mind.
Use Official Base Images
Prefer using official base images from Docker Hub or other reputable sources. These images are regularly maintained, and vulnerabilities are promptly patched.
Leverage Layer Caching
Docker uses caching to speed up the build process. Place frequently changing instructions (e.g., copying source code) at the end of the Dockerfile to take advantage of caching for stable layers.
Make sure this orientation change does not alter the working of Dockerfile itself.
Use .dockerignore
Create a .dockerignore file in the project directory to exclude unnecessary files and directories from being copied into the image during the build process. This reduces image size and build time.
Use Specific Tags
When pulling base images or dependencies, use specific version tags (e.g., `nginx:1.19` instead of `nginx:latest`) to ensure consistency and avoid potential compatibility issues.
Avoid Running as Root
Whenever possible, run your application as a non-root user inside the container to reduce security risks. Use the `USER` instruction in your Dockerfile to specify a non-root user.
# Create a non-root user named "appuser"
RUN useradd -m appuser
……
# Change the ownership of the /app directory to "appuser"
RUN chown -R appuser:appuser /app
# Switch to the "appuser" for subsequent commands
USER appuser
Docker Build Troubleshooting - Some Common Errors & How to Fix Them
During the Docker build process, you might encounter errors that prevent the successful creation of your Docker image.
Let's cover some common issues you might face while executing Docker build and how to resolve them.
Cannot Find File Error
This error typically occurs when the `COPY` or `ADD` instruction references a file or directory that doesn't exist in the build context. Double-check the file paths and ensure they exist in the correct location.
Build Dependencies Missing
If your application requires specific build tools, make sure to include them in your Dockerfile, so they're available during the build process.
Remember to clean up unnecessary build tools after they have been used.
Permission Errors
Permission errors might occur if your application attempts to write to a directory that has restricted access within the container. Secure required permission.
Networking Issues
If your application requires internet access during the build process (e.g., fetching dependencies), ensure that your Docker daemon has access to the internet.
What is Docker Daemon?
The Docker daemon is a service that you can use on your host operating system.
Also Read: Kubernetes DaemonSet Tutorial
Incorrect Dockerfile Syntax
Review your Dockerfile carefully for any syntax errors or misplaced instructions. Double-check the order of instructions and ensure each line adheres to the correct syntax.
If you encounter an error, don't worry! Docker's error messages are usually helpful in diagnosing the issue. Troubleshoot the error, adjust your Dockerfile if necessary, and try building the image again.
Also Read: Differences between Docker and Podman
Conclusion
Congratulations! If you reached this section then brace yourself, you did learn a great deal about Docker.
You've now learned how to build a Docker image step-by-step, write an optimized Dockerfile, host your image on Docker Hub or a local registry, and troubleshoot common build errors.
Next steps? Go to Docker to see a host of things you can do. A good next thing to learn would be to write Docker compose file OR use nginx servers in Dockerfile. That’s all for today! Keep learning.
Happy containerizing! 🐳