CUD-Traffic-AI / Dockerfile.frontend
Rajeev Ranjan Pandey
fix: default light mode + lock deps with npm ci in both Dockerfiles
fd61bce
raw
history blame contribute delete
121 Bytes
FROM node:20-alpine
WORKDIR /app
COPY frontend/package*.json ./
RUN npm ci --ignore-scripts
COPY frontend/ .
EXPOSE 5173