Parameterize frontend dockerfile

This commit is contained in:
Jon Staab
2026-02-27 21:11:12 -08:00
parent 6ce1c5495e
commit a3f00aab37
+6
View File
@@ -8,6 +8,12 @@ COPY package.json bun.lock ./
RUN bun install
COPY . .
ARG VITE_API_URL
ARG VITE_PLATFORM_NAME
ENV VITE_API_URL=$VITE_API_URL
ENV VITE_PLATFORM_NAME=$VITE_PLATFORM_NAME
RUN bun run build
EXPOSE 3000