fix(build): pnpm install --prod=false so devDeps (remix, husky) are present during docker build
Some checks failed
Mark Stale Issues and Pull Requests / stale (push) Has been cancelled

This commit is contained in:
2026-04-30 22:15:16 +00:00
parent d9eea2adaf
commit 713a3db8ce

View File

@@ -9,7 +9,7 @@ COPY package.json pnpm-lock.yaml ./
#RUN npm install -g corepack@latest #RUN npm install -g corepack@latest
#RUN corepack enable pnpm && pnpm install #RUN corepack enable pnpm && pnpm install
RUN npm install -g pnpm && pnpm install RUN npm install -g pnpm && pnpm install --prod=false
# Copy the rest of your app's source code # Copy the rest of your app's source code
COPY . . COPY . .