60 lines
1.1 KiB
Bash
Executable File
60 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o nounset
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
curDir=$(cd "$(dirname "$0")" && pwd)
|
|
cd "${curDir}/../" || return
|
|
|
|
D7Y_VERSION=${D7Y_VERSION:-"latest"}
|
|
D7Y_REGISTRY=${D7Y_REGISTRY:-d7yio}
|
|
IMAGES_DIR="build/images"
|
|
BASE_IMAGE=${BASE_IMAGE:-alpine:3.12}
|
|
|
|
GOPROXY=${GOPROXY:-`go env GOPROXY`}
|
|
GOTAGS=${GOTAGS:-}
|
|
GOGCFLAGS=${GOGCFLAGS:-}
|
|
|
|
# enable bash debug output
|
|
DEBUG=${DEBUG:-}
|
|
|
|
if [[ -n "$DEBUG" ]]; then
|
|
set -x
|
|
fi
|
|
|
|
docker-build() {
|
|
name=$1
|
|
docker build \
|
|
--build-arg GOPROXY="${GOPROXY}" \
|
|
--build-arg GOTAGS="${GOTAGS}" \
|
|
--build-arg GOGCFLAGS="${GOGCFLAGS}" \
|
|
--build-arg BASE_IMAGE="${BASE_IMAGE}" \
|
|
-t "${D7Y_REGISTRY}/${name}:${D7Y_VERSION}" \
|
|
-f "${IMAGES_DIR}/${name}/Dockerfile" .
|
|
}
|
|
|
|
git-submodule() {
|
|
git submodule update --init --recursive
|
|
}
|
|
|
|
main() {
|
|
git-submodule
|
|
|
|
case "${1-}" in
|
|
cdn)
|
|
docker-build cdn
|
|
;;
|
|
dfdaemon)
|
|
docker-build dfdaemon
|
|
;;
|
|
scheduler)
|
|
docker-build scheduler
|
|
;;
|
|
manager)
|
|
docker-build manager
|
|
esac
|
|
}
|
|
|
|
main "$@"
|