Fix Docker deployment by removing problematic bun pm trust command

Remove the failing "bun pm trust --all" command that was causing Docker build
failures and replace with simple echo statement. This matches the working
container configuration and ensures reliable deployments.
This commit is contained in:
rizky 2025-11-21 15:26:04 +07:00
parent 5f8f581b63
commit 9d57f169b7
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ COPY pkgs/dbgen/package.json ./pkgs/dbgen/
# Install dependencies
RUN bun install
RUN bun pm trust --all || true
RUN echo "Package dependencies installed successfully"
# Copy the rest of the source code
COPY . .