added frontend for k8s changes in k8s and comp and pages and dockerfile

This commit is contained in:
tusuii
2026-02-25 00:49:09 +05:30
parent ed87721301
commit 5af349316e
12 changed files with 22 additions and 16 deletions

View File

@@ -3,6 +3,10 @@ FROM node:20-alpine AS builder
WORKDIR /app
# Accept build arguments
ARG VITE_API_BASE_URL
ENV VITE_API_BASE_URL=$VITE_API_BASE_URL
# Install dependencies first (layer-cache friendly)
COPY package.json package-lock.json ./
RUN npm ci --frozen-lockfile