You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
336 B

@echo off
set IMAGE_NAME=registry.cn-beijing.aliyuncs.com/zyh5/docs
echo [1/3] Building VitePress...
call npm run build
if %ERRORLEVEL% NEQ 0 (
echo Build failed!
exit /b %ERRORLEVEL%
)
echo [2/3] Building Docker image...
docker build -t %IMAGE_NAME% .
echo [3/3] Pushing to Registry...
docker push %IMAGE_NAME%
echo Done!