mirror of https://github.com/rocboss/paopao-ce
parent
edbd99e2e7
commit
f24b0d2273
@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
# eg.1 : sh build-image.sh
|
||||
# eg.2, set image: sh build-image.sh bitbus/paopao-ce
|
||||
|
||||
VERSION=`git describe --tags --always | cut -f1 -f2 -d "-"` # eg.: 0.2.5
|
||||
IMAGE="bitbus/paopao-ce"
|
||||
|
||||
if [ -n "$1" ]; then
|
||||
IMAGE="$1"
|
||||
fi
|
||||
if [ -n "$2" ]; then
|
||||
VERSION="$2"
|
||||
fi
|
||||
|
||||
# build image
|
||||
docker buildx build \
|
||||
--build-arg USE_DIST="yes" \
|
||||
--tag "$IMAGE:${VERSION}" \
|
||||
--tag "$IMAGE:latest" \
|
||||
. -f Dockerfile
|
||||
|
||||
# push to image rep
|
||||
# if [ -n "$1" ]; then
|
||||
# docker push "$IMAGE:${VERSION}"
|
||||
# docker push "$IMAGE:latest"
|
||||
# fi
|
Loading…
Reference in new issue