Skip to content

Instantly share code, notes, and snippets.

View ARUNKUMAAR-R's full-sized avatar
🎯
Focusing

Albatroz ARUNKUMAAR-R

🎯
Focusing
View GitHub Profile
@ARUNKUMAAR-R
ARUNKUMAAR-R / Dockerfile
Last active April 29, 2025 05:12
Multi stage docker file for nodejs based application
#-- Build Stage --##
FROM node:14-slim as Build
WORKDIR /usr/src/app
COPY . ./
RUN npm install