mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 19:12:48 +00:00
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:
parent
07b87ac8a7
commit
bdc5fbc8fd
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue