chore(yolk): remove --prod on Dockerfile deps installation

This commit is contained in:
Ayo Ayco 2025-07-28 13:25:01 +02:00
parent e170e22621
commit 7f733512a2

View file

@ -20,13 +20,13 @@ COPY package.json ./
COPY .npmrc ./
COPY pnpm-lock.yaml ./
COPY patches ./patches
RUN pnpm i --frozen-lockfile --ignore-scripts --prod
RUN pnpm i --frozen-lockfile --ignore-scripts
# Copy all source files
COPY . ./
# Run full install with every postinstall script ( This needs project file )
RUN pnpm i --frozen-lockfile --prod
RUN pnpm i --frozen-lockfile
# Build
RUN pnpm build