Skip to content

Instantly share code, notes, and snippets.

View rahulgayen's full-sized avatar

Rahul Gayen rahulgayen

View GitHub Profile
@rahulgayen
rahulgayen / Dockerfile
Created March 29, 2023 13:32 — forked from micalevisk/Dockerfile
Production Dockerfile example for NestJS projects.
## ===========================================================> The common stage
FROM node:16.14 AS base
ENV NODE_ENV=production
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
## Remove unnecessary files from `node_modules` directory