fix(frontend): not building

This commit is contained in:
h
2026-01-21 01:48:10 +01:00
parent 9869ac2f20
commit 277e68f1ed
2 changed files with 7 additions and 0 deletions

View File

@@ -69,6 +69,8 @@ services:
build: build:
context: ./frontend context: ./frontend
dockerfile: Dockerfile dockerfile: Dockerfile
args:
- PUBLIC_CONVEX_URL=${PUBLIC_CONVEX_URL}
image: stealth-ai-relay/frontend image: stealth-ai-relay/frontend
profiles: profiles:
- frontend - frontend
@@ -85,6 +87,8 @@ services:
build: build:
context: ./frontend context: ./frontend
dockerfile: Dockerfile dockerfile: Dockerfile
args:
- PUBLIC_CONVEX_URL=${PUBLIC_CONVEX_URL}
image: stealth-ai-relay/frontend image: stealth-ai-relay/frontend
volumes: volumes:
- ./frontend:/app - ./frontend:/app

View File

@@ -3,6 +3,9 @@ FROM oven/bun:alpine
ENV TERM=xterm-256color ENV TERM=xterm-256color
ENV COLORTERM=truecolor ENV COLORTERM=truecolor
ARG PUBLIC_CONVEX_URL
ENV PUBLIC_CONVEX_URL=$PUBLIC_CONVEX_URL
WORKDIR /app WORKDIR /app
COPY . . COPY . .