pdf / test_dockerfile_fix.bat
fokan's picture
Upload 48 files
943fd62 verified
@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.