Replace npm with pnpm for dependency installation

This commit is contained in:
Steven Noack 2025-12-11 06:30:59 +01:00 committed by GitHub
parent f4fd7403cc
commit 051f4acecc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ WORKDIR /app
# Copy package files and install dependencies
COPY package*.json ./
RUN npm install
RUN pnpm install
# Copy application files
COPY . .