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:
m4x809 2025-10-25 03:59:19 +02:00
parent 064b37b822
commit e48909e481
Signed by: m4x809
SSH key fingerprint: SHA256:YCoFF78p2DUP94EnCScqLwldjkKDwdKSZq3r8p/6EiU

View file

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