FROM node:18-slim WORKDIR /app COPY frontend/package*.json ./ RUN npm install COPY frontend/ ./ CMD ["npm", "run", "dev"]