uploaded k8s and jenkinsfile
Some checks failed
ecommerce admin pannel/pipeline/head Something is wrong with the build of this commit
Some checks failed
ecommerce admin pannel/pipeline/head Something is wrong with the build of this commit
This commit is contained in:
13
Dockerfile
13
Dockerfile
@@ -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;"]
|
||||
|
||||
Reference in New Issue
Block a user