File size: 794 Bytes
943fd62 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
@echo off
echo Testing Dockerfile changes...
REM Check if Dockerfile exists
if exist "Dockerfile" (
echo ✓ Dockerfile found
REM Check if arabic_fonts_setup.sh exists
if exist "arabic_fonts_setup.sh" (
echo ✓ arabic_fonts_setup.sh found
REM Check Dockerfile content for the fixed script execution
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. |