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