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