From 978b39bb8fdf568a2cdea90af40a80655c5483ff Mon Sep 17 00:00:00 2001 From: Jannik Date: Fri, 5 Sep 2025 17:49:32 +0200 Subject: [PATCH] build: update dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 82b17eb..94fa049 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN cd /temp/dev && bun install --frozen-lockfile # install with --production (exclude devDependencies) RUN mkdir -p /temp/prod COPY package.json bun.lock /temp/prod/ -RUN cd /temp/prod && bun install --frozen-lockfile --production +RUN cd /temp/prod && bun install --frozen-lockfile --production --backend=copyfile # copy node_modules from temp directory # then copy all (non-ignored) project files into the image