From e48909e4816fa29d0023e79adb1893dbae6f1d43 Mon Sep 17 00:00:00 2001 From: m4x809 Date: Sat, 25 Oct 2025 03:59:19 +0200 Subject: [PATCH] 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4eb2956..cc1f22a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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