How to Dockerize a Node.js application | 2022 Update

How to Dockerize a Node.js application

Node.js and Docker! You may have already heard about these two technologies so, let’s see how to Dockerize a Node.js app, and combine those two technologies by creating a Docker image with a Node.js application in it, and see why they are trending topics in today’s development IT industry.

Table of contents

Before we start, with how to dockerize a node app I’d like to answer these common questions that I come across very often.

Why should I learn Docker?

At this point, you should already know that Docker is a very powerful platform that is widely being used across all companies, from small to big ones. It is used to run applications even on production systems.

Docker is a way to run your application on “Containers” so that application can run on any platform that supports Docker, this means that you don’t need to worry about the OS, dependencies, libraries, and any other requirement your application needs.

Unlike Virtual Machines, Docker is lightweight and faster, so your application can stay nearly the same size and consume fewer resources than a VM.

Why do I want to Dockerize my Node app?

As mentioned above, your application will be able to run on any OS that supports Docker, which nowadays is supported on all the most used OS.

Besides Node.js app… Can I Dockerize another application/framework?

Yes, this guide will explain to you how to Dockerize a Node.js application, however, you can Dockerize nearly everything, you just need to know the basics.

CTA-banners2-20

Let’s get our hands dirty!

First of all, we will use “Github repo” and for the sample Dockerize a Node.js application. As you can see we already have here a file called Dockerfile, this file is used to define the steps our image is going to take to build, each line of the Dockerfile is a layer, so a Docker image consists of several layers.

Before doing any Docker work, let’s see what our node application does.

First, we’re going to see that we have the folder “node_app”, here is where the application lives. We have a “.env” file, which we use to define a message (TEST)  and a port (PORT), so we can run the application on any port we choose and the message that we set is going to be displayed on the screen when we visit the web page.

As you can see it is a very simple Node.js application where we only need to install the node modules using:

npm

install, set 2 variables for it to work and start it

Dockerfile explanation

As already mentioned, we only need to take 3 steps for the dockerize Node.js app to work

  • Install node modules – npm install
  • Define the 2 variables TEST and PORT
  • Start the application – node index

1. We will break the Dockerfile into small parts so it’s easier to explain

Note: the comments start with “#”, so only the lines that don’t start with “#” are taken as a step (layer)

# Base Docker image to use
FROM node:6.11.1

2. In this line, we’re defining what base image we’re going to use for the node app.

There are plenty of images to choose, you can even create yours (like the one we’re going to create). This image is grabbed from Dockerhub, the image is “node” and the tag is 6.11.1. This means that we’re downloading the official Node.js image and using the version 6.11.1.

# install gettext for envsubst
RUN apt-get update
RUN apt-get install -y gettext-base

3. Because this image is based on Debian, we can use apt commands to install programs (yeih!).

So first we’re updating the package manager and then we’re installing a tool that is going to be very handy which is called envsubst – we’re going to talk more about it in short.

# Copy all the content to /var/www
COPY . /var/www

4. Next, we’re copying all the root folder to /var/www – we need to have this inside the image

# From now on we will run all the commands on this directory
WORKDIR /var/www/

5. After we copy everything we’re now defining the WORKDIR.

The WORKDIR is the location where your next Dockerfile commands will run. for example, in this case, we define “/var/www” as our WORKDIR, so if we do “pwd” it will show us “/var/www”.

# Install node modules and express
RUN cd node_app && npm install

6. After we defined the WORKDIR we can now go to the Node.js app root directory and dom npm install to install all the dependencies.

6. After we defined the WORKDIR we can now go to the Node.js app root directory and dom npm install to install all the dependencies.

# Command to execute on container intitialization, this will be PID 1
CMD ["bash", "start.sh"]

7.Finally, the CMD instruction tells Docker to run a bash script when the container is started.

start.sh script

echo "Updating the variables on .env file"
envsubst < node_app/.env > node_app/.env 

cd node_app
echo "Starting node application"
node index

application.

8. On this script, we’re replacing the variables TEST and PORT on the .env file, then we’re heading to the Node.js app root dir and starting the application.

At this point we’ve just defined all the steps that the Dockerfile is going to take to create this image, we’re going to build it now. To build the Docker image you need to run this command in the same directory as the Dockerfile

docker build -t sample-node-app:test1.

9. Here we’re building the image and we’re calling it sample-node-app with the tag test1.

You will see Docker sorcery working immediately! After we created the images you will be able to list it by doing `docker images`. Now to test it we only need a free port and this command

docker run -p 3000:3000 -e TEST="this is a message" -e PORT="3000" -ti sample-node-app:test1

explanation:

docker run: run a docker container 

-p: share port with the host 

-t: allocate a pseudo-TTY 

-i: Keep STDIN open even if not attached 

sample-node-app:test1 : image name and tag name

10.Voilà, your container is now running using the image you created, you can now access http://localhost:3000 and you should see the text you chose on the screen!

Read our slideshow to learn How to Dockerize a Flask Python application

Conclusion

At this point, you should know what Docker is, how it works, image creation and how to run containers. Docker is a very powerful tool, and hopefully, with this tutorial of how to Dockerize a Node.js app you can now take advantage of it.

If you are interested in Code Deployments with GitHub and WebHooks, read our tutorial or our success story Using GitHub with AWS to learn more about the advantages of work with GitHub.

What Problems does ClickIT solve?

  • We HELP agencies and enterprises migrate, build and operate web applications on AWS.
  • We HELP grow and scale web applications to have more visitors, customers and leads.
  • We SOLVE the gap between a digital company and Amazon Web Services hosting provider. Everyone love AWS, but who will bring superlative expertise to operate their digital products within AWS?
  • And we HELP cut DevOps and AWS operating expenses due to our affordable implementation costs without compromising quality. What is NearShore Outsourcing?

Subscribe

to our newsletter

Table of Contents
Weekly DevOps Newsletter

Subscribe to our DevOps News

Subscribe to a monthly newsletter to receive the IT best practices, startup-related insights & emerging technologies.

Join hundreds of business leaders and entrepreneurs, who are part of our growing tech community.

We guarantee 100% privacy. Your information will not be shared.