1234567891011121314151617181920212223242526272829303132 |
- # Build stage
- FROM node:18-alpine as builder
- WORKDIR /app
- # Copy package files
- COPY package*.json ./
- # Install dependencies
- RUN npm ci
- # Copy source code
- COPY . .
- # Build the application
- RUN npm run build
- # Runtime stage
- FROM node:18-alpine
- WORKDIR /app
- # Install serve to run the application
- RUN npm install -g serve
- # Copy built assets from builder
- COPY --from=builder /app/dist ./dist
- EXPOSE 5173
- # Run the application
- CMD ["serve", "-s", "dist", "-l", "5173"]
|