From f3984f8b5716be06051d9d6950ed137b7bd684f9 Mon Sep 17 00:00:00 2001 From: Clemens Hering Date: Tue, 11 Nov 2025 06:29:14 +0100 Subject: [PATCH] fixup --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 4b26440..51e707d 100644 --- a/Containerfile +++ b/Containerfile @@ -8,7 +8,7 @@ WORKDIR /app COPY package*.json ./ # Install all deps (inkl. dev) -RUN --mount=type=cache,target=/root/.npm npm ci +RUN --mount=type=cache,target=/root/.npm npm install && npm ci # Copy app source and build COPY . .