From 4ce7c0c56692ce2676143e262e09502686f5724c Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 6 Nov 2025 12:03:02 +0100 Subject: [PATCH] Fix COPY command in Dockerfile for package files --- t3-app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t3-app/Dockerfile b/t3-app/Dockerfile index d423e58..7cd4b47 100644 --- a/t3-app/Dockerfile +++ b/t3-app/Dockerfile @@ -10,7 +10,7 @@ COPY prisma ./ # Install dependencies based on the preferred package manager -COPY package.json bun.lock +COPY package.json bun.lock . RUN npm i