diff --git a/frontend/Dockerfile b/frontend/Dockerfile index d09c195..5420e81 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -3,11 +3,13 @@ FROM oven/bun:alpine ENV TERM=xterm-256color ENV COLORTERM=truecolor +RUN apk add --no-cache nodejs npm + WORKDIR /app COPY . . RUN bun i -RUN bun run build +RUN npm run build ENTRYPOINT ["bun"]