Fix bun install command - remove invalid --production=false flag
Some checks failed
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 2m4s

This commit is contained in:
2026-03-25 17:20:43 +00:00
parent 390b1de203
commit 3386ffc41e

View File

@@ -15,8 +15,8 @@ COPY prisma ./prisma/
# Install bun for faster installs # Install bun for faster installs
RUN npm install -g bun RUN npm install -g bun
# Install dependencies # Install dependencies (including devDependencies for build)
RUN bun install --frozen-lockfile --production=false RUN bun install --frozen-lockfile
# Stage 2: Builder # Stage 2: Builder
FROM node:20-alpine AS builder FROM node:20-alpine AS builder