Adjust Dockerfile.

This commit is contained in:
2025-03-11 11:34:26 -05:00
parent ac773ac6c7
commit cc2679a9b2

View File

@@ -4,7 +4,7 @@ FROM node:18-alpine AS builder
WORKDIR /app WORKDIR /app
# Copy package.json and install dependencies # Copy package.json and install dependencies
COPY package.json package-lock.json ./ COPY package.json pnpm-lock.yaml ./
RUN npm ci RUN npm ci
# Copy the rest of the app and build # Copy the rest of the app and build