chore: Optimize Dockerfile for faster npm installation and update package.json to include additional build checks and dependencies for improved development workflow.
Publish Fast Tabler Docker image / build-and-push-fast (push) Failing after 1m15s

This commit is contained in:
2025-12-24 16:17:00 +07:00
parent b46471c4b4
commit 248b78ce96
2 changed files with 13 additions and 8 deletions
+5 -1
View File
@@ -11,7 +11,11 @@ RUN npm config set registry https://registry.npmjs.org/ \
&& npm config set fetch-retry-maxtimeout 120000
COPY frontend/package*.json ./
RUN --mount=type=cache,target=/root/.npm npm install --no-audit --no-fund
# Ускоряем установку: --ignore-scripts пропускает postinstall скрипты
RUN --mount=type=cache,target=/root/.npm \
npm ci --no-audit --no-fund --ignore-scripts --no-optional || \
npm install --no-audit --no-fund --ignore-scripts --no-optional
COPY frontend/src/ ./src/
COPY frontend/public/ ./public/
+8 -7
View File
@@ -5,7 +5,8 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build": "vite build",
"build:check": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
@@ -26,8 +27,6 @@
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
@@ -35,13 +34,15 @@
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.2.0",
"jsdom": "^26.0.0",
"typescript": "^5.7.2",
"vite": "^7.0.0",
"vitest": "^2.1.8"
"vite": "^7.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "4.40.0"
"@rollup/rollup-linux-x64-musl": "4.40.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"jsdom": "^26.0.0",
"vitest": "^2.1.8"
},
"overrides": {
"rollup": "4.40.0"