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