Skip to content

Instantly share code, notes, and snippets.

View sachith-1's full-sized avatar
🎯
Focusing

Sachith sachith-1

🎯
Focusing
View GitHub Profile
@sachith-1
sachith-1 / Dockerfile
Last active April 28, 2022 07:22
Dockerfile for multi-stage build demo
# base
FROM node:17.9.0 AS base
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .