md/scripts/build-static.sh
Libin YANG a9fa4c2824
Some checks failed
Build and Deploy / build-and-deploy (push) Has been skipped
Build and Push Docker Images / build (push) Failing after 1m0s
feat: build and deploy docker image (#495)
2024-12-23 19:59:59 +08:00

25 lines
611 B
Bash

#!/bin/bash
RELEASE_DIR='./docker';
REPO_NAME='doocs/md'
for app_ver in $RELEASE_DIR/*; do
if [ -f "$app_ver/Dockerfile.static" ]; then
tag=$(echo $app_ver | cut -b 10-);
echo "Build: $tag";
set -a
. "$app_ver/.env"
set +a
echo $app_ver
echo "VER_APP: $VER_APP"
echo "VER_NGX: $VER_NGX"
echo "VER_GOLANG: $VER_GOLANG"
echo "VER_ALPINE: $VER_ALPINE"
docker build --build-arg VER_APP=$VER_APP --build-arg VER_NGX=$VER_NGX -f "$app_ver/Dockerfile.static" -t "$REPO_NAME:${VER_APP}-static" "$app_ver"
fi
done