fix: inject env variable at build time
Docker Build and Push / build-and-push (push) Has been cancelled

This commit is contained in:
2026-02-22 03:02:42 +07:00
parent 5b402b544d
commit 439d01c01e
+2
View File
@@ -1,4 +1,6 @@
FROM node:24-alpine AS development-dependencies-env
ARG VITE_API_BASE_URL
ENV VITE_API_BASE_URL=$VITE_API_BASE_URL
COPY . /app
WORKDIR /app
RUN npm ci