hotfix for build args and bumped up version
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
2025-12-13 19:31:39 +05:30
parent 8f398c35df
commit 14b43cb3c5
3 changed files with 4 additions and 3 deletions

View File

@@ -15,7 +15,8 @@ COPY . .
# Build the app
ARG VITE_API_BASE_URL
RUN VITE_API_BASE_URL=$VITE_API_BASE_URL npm run build
ARG VITE_AUTH_BASE_URL
RUN VITE_API_BASE_URL=$VITE_API_BASE_URL VITE_AUTH_BASE_URL=$VITE_AUTH_BASE_URL npm run build
# Stage 2: Static file server (BusyBox)
FROM busybox:latest