Handle enter button #481

Merged
Taoshan98 merged 12 commits from feat-sudo-auto-fill-password into dev-1.10.1 2026-01-04 15:29:11 +00:00
Showing only changes of commit f85609660a - Show all commits

View File

@@ -19,7 +19,7 @@ COPY . .
RUN find public/fonts -name "*.ttf" ! -name "*Regular.ttf" ! -name "*Bold.ttf" ! -name "*Italic.ttf" -delete
RUN npm cache clean --force && \
NODE_OPTIONS="--max-old-space-size=4096" npm run build
npm run build
# Stage 3: Build backend
FROM deps AS backend-builder
@@ -29,7 +29,7 @@ COPY . .
RUN npm rebuild better-sqlite3 --force
RUN NODE_OPTIONS="--max-old-space-size=4096" npm run build:backend
RUN npm run build:backend
# Stage 4: Production dependencies only
FROM node:22-slim AS production-deps