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
324 B
18 lines
324 B
#!/bin/bash |
|
IMAGE_NAME="registry.cn-beijing.aliyuncs.com/zyh5/docs" |
|
|
|
echo "[1/3] Building VitePress..." |
|
npm run build |
|
|
|
if [ $? -ne 0 ]; then |
|
echo "Build failed!" |
|
exit 1 |
|
fi |
|
|
|
echo "[2/3] Building Docker image..." |
|
docker build -t $IMAGE_NAME . |
|
|
|
echo "[3/3] Pushing to Registry..." |
|
docker push $IMAGE_NAME |
|
|
|
echo "Done!"
|
|
|