1
0
forked from baron/baron-sso

fix(frontend): pnpm TTY error and lockfile mismatch in non-interactive environments

- Set CI=true in Dockerfiles and pnpm commands to avoid TTY issues
- Use --no-frozen-lockfile in runtime scripts to allow lockfile updates during development/startup
- Resolves #890
This commit is contained in:
2026-05-27 13:10:35 +09:00
parent 53830b20d8
commit 35e51910c6
9 changed files with 17 additions and 5 deletions

View File

@@ -2,6 +2,9 @@ FROM node:lts
WORKDIR /workspace
# Set CI environment variable to true to avoid TTY issues with pnpm
ENV CI=true
# Install pnpm
RUN npm install -g pnpm