fix(frontend): ws replacement

This commit is contained in:
h
2026-01-21 02:03:36 +01:00
parent 11811819f1
commit 69ddb3173f
10 changed files with 290 additions and 60 deletions

View File

@@ -8,9 +8,13 @@ ENV PUBLIC_CONVEX_URL=$PUBLIC_CONVEX_URL
WORKDIR /app
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun i
RUN bun run build
RUN bun --bun svelte-kit sync
RUN bun --bun run build
ENTRYPOINT ["bun"]