DONE: use ip for frontend but point to domain for api
Build Docker Image / build-backend (push) Successful in 6s
Build Docker Image / build-admin (push) Successful in 45s
Build Docker Image / build-teller (push) Successful in 20s
Build Docker Image / build-customer (push) Successful in 2m2s

This commit is contained in:
ISMAIL MASSERAN
2026-07-23 14:59:01 +08:00
parent 621cf212f5
commit 8fd3dbe393
12 changed files with 57 additions and 33 deletions
-2
View File
@@ -3,9 +3,7 @@ FROM node:20-bookworm AS build
WORKDIR /app
ARG VITE_API_URL=http://localhost:8080
ARG VITE_CUSTOMER_APP_URL=http://localhost:3000
ENV VITE_API_URL=$VITE_API_URL
ENV VITE_CUSTOMER_APP_URL=$VITE_CUSTOMER_APP_URL
COPY package.json package-lock.json ./
RUN npm ci