Update Dockerfile to install all dependencies including devDependencies for build process

This commit is contained in:
Luke Hagar
2025-08-14 12:12:52 -05:00
parent 4d43969d2f
commit 9dff72e756

View File

@@ -15,8 +15,8 @@ COPY package.json pnpm-lock.yaml* ./
# Enable and use pnpm via corepack
RUN corepack enable && corepack prepare pnpm@9.12.3 --activate
# Install dependencies
RUN pnpm install --frozen-lockfile
# Install dependencies (include devDependencies needed for build)
RUN pnpm install --frozen-lockfile --prod=false
# Copy the rest of the source
COPY . .