frontend / Dockerfile
Praneeth Yerrapragada
feat: repo setup
88be6fd
raw
history blame
No virus
261 Bytes
FROM node:20-alpine as build
WORKDIR /app
# Install dependencies
COPY package.json package-lock.* ./
RUN npm install
# Build the application
COPY . .
RUN npm run build
# ====================================
FROM build as release
CMD ["npm", "run", "start"]