DONE: update to use ip for the api in frontend
Build Docker Image / build-teller (push) Successful in 6s
Build Docker Image / build-backend (push) Successful in 5s
Build Docker Image / build-admin (push) Successful in 36s
Build Docker Image / build-customer (push) Successful in 17s

This commit is contained in:
ISMAIL MASSERAN
2026-07-26 13:40:00 +08:00
parent 8fd3dbe393
commit 177471c24d
11 changed files with 100 additions and 15 deletions
+2
View File
@@ -3,7 +3,9 @@ FROM node:20-bookworm AS build
WORKDIR /app
ARG VITE_API_URL=http://localhost:8080
ARG VITE_BRANCH_QR_BASE_URL=http://localhost:3000
ENV VITE_API_URL=$VITE_API_URL
ENV VITE_BRANCH_QR_BASE_URL=$VITE_BRANCH_QR_BASE_URL
COPY package.json package-lock.json ./
RUN npm ci