Update Dockerfile

This commit is contained in:
NotII
2025-04-06 16:14:10 +01:00
parent 17e6e7d677
commit bff930be05

View File

@@ -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