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.
This commit is contained in:
m4x809 2025-10-25 03:47:15 +02:00
parent 07b87ac8a7
commit bdc5fbc8fd
Signed by: m4x809
SSH key fingerprint: SHA256:YCoFF78p2DUP94EnCScqLwldjkKDwdKSZq3r8p/6EiU

View file

@ -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