| @echo off
|
| echo Testing Dockerfile changes...
|
| |
|
|
| if exist "Dockerfile" (
|
| echo ✓ Dockerfile found
|
| |
|
|
| if exist "arabic_fonts_setup.sh" (
|
| echo ✓ arabic_fonts_setup.sh found
|
| |
|
|
| findstr /C:"if [ -f \"arabic_fonts_setup.sh\" ]" Dockerfile >nul
|
| if %errorlevel% == 0 (
|
| echo ✓ Dockerfile has the fixed script execution logic
|
| ) else (
|
| echo ✗ Dockerfile is missing the fixed script execution logic
|
| )
|
| ) else (
|
| echo ✗ arabic_fonts_setup.sh not found
|
| )
|
| ) else (
|
| echo ✗ Dockerfile not found
|
| )
|
|
|
| echo Dockerfile validation complete. |