uploaded k8s and jenkinsfile
Some checks failed
ecommerce admin pannel/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
tusuii
2026-03-10 22:38:39 +05:30
parent 39d42663c0
commit 14b4099cdf
6 changed files with 191 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
# ---------- Build Stage ----------
FROM node:20-alpine AS builder
FROM mirror.gcr.io/library/node:20-bullseye-slim AS builder
WORKDIR /app
@@ -8,14 +8,19 @@ RUN npm install
COPY . .
ARG VITE_API_URL
ARG VITE_APP_NAME="VC E-Commerce Admin Panel"
ENV VITE_API_URL=$VITE_API_URL
ENV VITE_APP_NAME=$VITE_APP_NAME
RUN npm run build
# ---------- Production Stage ----------
FROM nginx:alpine
FROM mirror.gcr.io/library/nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 5174
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]