coderound / frontend /Dockerfile
ketannnn's picture
feat: add docker-compose and rewrite README with architecture rationale
6106435
raw
history blame contribute delete
128 Bytes
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]