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:
parent
5f8f581b63
commit
9d57f169b7
|
|
@ -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 . .
|
||||
|
|
|
|||
Loading…
Reference in New Issue