From bdc5fbc8fd1fccad6fabb2051995bb6733c6e97c Mon Sep 17 00:00:00 2001 From: m4x809 Date: Sat, 25 Oct 2025 03:47:15 +0200 Subject: [PATCH] Update Dockerfile to install all dependencies including devDependencies - Modified the Dockerfile to install dependencies with the `--production=false` flag, allowing for the inclusion of devDependencies during the build process. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9725061..8eb6849 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,8 @@ WORKDIR /app COPY package.json ./ COPY bun.lock* ./ -# Install dependencies -RUN bun install +# Install dependencies including devDependencies +RUN bun install --production=false # Build the application FROM base AS builder