fix(frontend): not building

This commit is contained in:
h
2026-01-21 01:39:51 +01:00
parent 1969af367c
commit 4b72ab7511

View File

@@ -3,11 +3,13 @@ FROM oven/bun:alpine
ENV TERM=xterm-256color ENV TERM=xterm-256color
ENV COLORTERM=truecolor ENV COLORTERM=truecolor
RUN apk add --no-cache nodejs npm
WORKDIR /app WORKDIR /app
COPY . . COPY . .
RUN bun i RUN bun i
RUN bun run build RUN npm run build
ENTRYPOINT ["bun"] ENTRYPOINT ["bun"]