feat: Add PUBLIC_BACKEND_HOST env var to Dockerfile for build stage

This commit is contained in:
log101 (aider) 2025-03-18 21:12:51 +03:00
parent d8724ef952
commit 42fcfde81d

View File

@ -3,6 +3,7 @@ WORKDIR /app
COPY package*.json ./
RUN bun install
COPY . .
ENV PUBLIC_BACKEND_HOST=https://api.acayip.dev
RUN bun run build
FROM nginx:alpine AS runtime