mirror of
https://github.com/M4X809/list-of-lp.git
synced 2025-12-25 19:12:48 +00:00
Update Dockerfile to streamline dependency copying
- Removed the copying of bunfig.toml from the Dockerfile, simplifying the build context. - Maintained the installation of dependencies with the `--frozen-lockfile` option for consistency.
This commit is contained in:
parent
064b37b822
commit
e48909e481
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ FROM oven/bun:latest AS deps
|
|||
# Install dependencies only when needed
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json bunfig.toml next.config.ts ./
|
||||
COPY package.json next.config.ts ./
|
||||
|
||||
# Install dependencies including devDependencies
|
||||
RUN bun install --frozen-lockfile
|
||||
|
|
|
|||
Loading…
Reference in a new issue