FROM node:20-alpine WORKDIR /app COPY frontend/package*.json ./ RUN npm ci --ignore-scripts COPY frontend/ . EXPOSE 5173