Set frontend API URL at build time. #18

Merged
drew merged 1 commit from frontent-url into main 2025-10-21 04:08:54 +00:00
Showing only changes of commit 270e89214d - Show all commits

View file

@ -12,6 +12,7 @@ FROM node:20-alpine AS build-env
COPY . /app/ COPY . /app/
COPY --from=development-dependencies-env /app/node_modules /app/node_modules COPY --from=development-dependencies-env /app/node_modules /app/node_modules
WORKDIR /app WORKDIR /app
ENV VITE_API_URL=https://tasks.tiramisu.one
RUN npm run build RUN npm run build
FROM node:20-alpine FROM node:20-alpine