From bf4d7fd3eeb9b58a6da47ba42bd6400ab0413a15 Mon Sep 17 00:00:00 2001 From: "Joerg (DJ7NT)" Date: Fri, 11 Apr 2025 18:18:27 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8b6d5d1..b49d8f2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /usr/src/app # this will cache them and speed up future builds FROM base AS install RUN mkdir -p /temp/dev -COPY package.json bun.lockb /temp/dev/ +COPY package.json /temp/dev/ RUN cd /temp/dev && bun install --frozen-lockfile # install with --production (exclude devDependencies)