fix(frontend): not building

This commit is contained in:
h
2026-01-21 01:31:01 +01:00
parent ec17f5e0fd
commit 11811819f1
12 changed files with 121 additions and 101 deletions

View File

@@ -3,15 +3,14 @@ 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 package.json bun.lock* ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun --bun svelte-kit sync
RUN bun --bun run build
RUN bun i
RUN bun run build
ENTRYPOINT ["bun"]