From bff930be051ae346f2aa022ff2ec96d227e02014 Mon Sep 17 00:00:00 2001 From: NotII <46204250+NotII@users.noreply.github.com> Date: Sun, 6 Apr 2025 16:14:10 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5d9130f..2fcbf14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ WORKDIR /app # Copy package files for better caching COPY package.json package-lock.json ./ -# Install dependencies -RUN npm ci --force +# Install dependencies (using install instead of ci to handle mismatched lock file) +RUN npm install --force # Install git and prepare for git hash capture RUN apk add --no-cache git