fix: Use npm install in Dockerfile to regenerate lockfile
Some checks failed
Deploy to Production / deploy (push) Failing after 0s
Test / backend-test (push) Failing after 0s
Test / frontend-test (push) Failing after 0s

This commit is contained in:
fullsizemalt 2025-12-09 11:00:51 -08:00
parent d06bf0defa
commit 0e4a73f7f0

View file

@ -8,7 +8,7 @@ COPY package*.json ./
COPY prisma ./prisma/ COPY prisma ./prisma/
# Install dependencies # Install dependencies
RUN npm ci RUN npm install
# Copy source # Copy source
COPY . . COPY . .