DEV Community

nguyendu
nguyendu

Posted on

Optimizing Dockerfile of a NestJS Project

When working on Dockerizing a NestJS project, you can take several measures to optimize the Dockerfile for better performance, smaller image size, and faster build times. Here are some key strategies to consider:

1. Utilize Multi-Stage Builds

Multi-stage builds allow you to separate the build and production stages of your Docker image, reducing the size of the final image by discarding unnecessary build artifacts. This also enhances security and efficiency by ensuring that only the required files for the runtime are included in the final image.

Here’s an example of a multi-stage build for a NestJS project:

# Build stage
FROM node:20-alpine AS build
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
RUN yarn build

# Production stage
FROM node:20-alpine
WORKDIR /app
COPY --from=build /app/dist ./dist
COPY package.json yarn.lock ./
RUN yarn install --production
CMD ["node", "dist/main"]
Enter fullscreen mode Exit fullscreen mode

In this example:

  • The build stage compiles the application.
  • The production stage only contains the necessary files for running the application, resulting in a smaller image.

2. Optimize Layering and Caching

Docker builds images by creating layers for each instruction in the Dockerfile. The order of instructions affects caching behavior. If a layer changes, all subsequent layers need to be rebuilt. To optimize this, place instructions that change infrequently, such as installing dependencies, near the beginning of the Dockerfile, and instructions that change more often, like copying the source code, towards the end.

Example:

FROM node:20-alpine
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
RUN yarn build
CMD ["node", "dist/main"]
Enter fullscreen mode Exit fullscreen mode

In this setup:

  • By copying package.json and yarn.lock before copying the source files, Docker can reuse the cached layers for installing dependencies as long as the dependencies haven’t changed, speeding up subsequent builds.

3. Use a .dockerignore file

Similar to .gitignore, a .dockerignore file tells Docker which files to exclude from the build context. Excluding unnecessary files, such as node_modules, .git, and local environment files, can reduce the size of the context sent to Docker and improve build performance.

Here’s an example of a typical .dockerignore for a Node.js project:

node_modules
.git
.env
*.log
Enter fullscreen mode Exit fullscreen mode

This ensures that only the essential files are copied into the Docker image, reducing the build time and improving efficiency.

4. Use Official Base Images

Official base images are generally well-optimized and maintained, ensuring you get security updates and a smaller image size. The Alpine variant of Node.js is particularly popular because it is lightweight and provides a minimal environment for running applications.

For example:

FROM node:20-alpine
Enter fullscreen mode Exit fullscreen mode

Using Alpine-based images helps keep the final image compact, which is beneficial for faster deployment and lower storage costs.

5. Run as a Non-Root User

By default, Docker containers run as the root user, which poses a security risk. To improve security, you should run your application under a non-root user. You can create a user within the Dockerfile and switch to it before running your application.

Example:

RUN adduser -D myuser
USER myuser
CMD ["node", "dist/main"]
Enter fullscreen mode Exit fullscreen mode

Running the application as a non-root user helps mitigate the impact of any potential vulnerabilities in your application.

Conclusion

Optimizing your Dockerfile can have significant benefits, including faster build times, smaller image sizes, and improved security. By using multi-stage builds, optimizing layer caching, leveraging .dockerignore, using official base images, and running as a non-root user, you can create a more efficient and secure Docker image for your NestJS project.

Remember to always test your Dockerfile thoroughly to ensure it behaves as expected under different environments and scenarios.

Top comments (0)