From 07174cecef7dae8669311525a877614afb2823e9 Mon Sep 17 00:00:00 2001 From: Eduard Prigoana Date: Tue, 27 Jan 2026 23:29:01 +0200 Subject: [PATCH] Fix typo in COPY command for bun.lock file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6fb65fa..b4795d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM oven/bun:canary-alpine WORKDIR /app # Copy package files first for caching -COPY package.json bun.lockb ./ +COPY package.json bun.lock ./ # Install all dependencies (including devDeps) RUN bun install