refactor: Replace Dockerfile with Dockerfile.fast for faster builds and add Dockerfile.test for testing purposes
Publish Fast Tabler Docker image / build-and-push-fast (push) Failing after 5m40s

This commit is contained in:
2025-07-08 23:54:18 +07:00
parent 97711f26cb
commit 82f2d62bf8
6 changed files with 21 additions and 2513 deletions
+6 -6
View File
@@ -16,8 +16,11 @@
# Основной оптимизированный
docker build -f Dockerfile .
# Быстрый с Yarn
# Быстрый с Alpine
docker build -f Dockerfile.fast .
# Простой тестовый
docker build -f Dockerfile.test .
```
#### B. Проверить сетевые настройки
@@ -64,12 +67,9 @@ cache-to: type=gha,mode=max
git push origin tabler
```
### Вариант 2: Быстрый с Yarn
### Вариант 2: Быстрый с Alpine
```bash
# Переименовать Dockerfile.fast в Dockerfile
mv Dockerfile.fast Dockerfile
git add Dockerfile
git commit -m "Switch to fast Dockerfile"
# Использовать Dockerfile.fast (уже исправлен)
git push origin tabler
```