From 277e68f1ed10a16d36a4871ea1752ff4e8c275b4 Mon Sep 17 00:00:00 2001 From: h Date: Wed, 21 Jan 2026 01:48:10 +0100 Subject: [PATCH] fix(frontend): not building --- docker-compose.yml | 4 ++++ frontend/Dockerfile | 3 +++ 2 files changed, 7 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 35fb8a0..a2a9adf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -69,6 +69,8 @@ services: build: context: ./frontend dockerfile: Dockerfile + args: + - PUBLIC_CONVEX_URL=${PUBLIC_CONVEX_URL} image: stealth-ai-relay/frontend profiles: - frontend @@ -85,6 +87,8 @@ services: build: context: ./frontend dockerfile: Dockerfile + args: + - PUBLIC_CONVEX_URL=${PUBLIC_CONVEX_URL} image: stealth-ai-relay/frontend volumes: - ./frontend:/app diff --git a/frontend/Dockerfile b/frontend/Dockerfile index d09c195..38730ca 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -3,6 +3,9 @@ FROM oven/bun:alpine ENV TERM=xterm-256color ENV COLORTERM=truecolor +ARG PUBLIC_CONVEX_URL +ENV PUBLIC_CONVEX_URL=$PUBLIC_CONVEX_URL + WORKDIR /app COPY . .