api-gateway/deploy/image-build.sh
Piotr Biernat fdd8e68ac0
All checks were successful
continuous-integration/drone/push Build is passing
[dev] Fast switch to Netflix Zuul API Gateway
2022-10-13 02:34:34 +02:00

17 lines
364 B
Bash
Executable File

#!/bin/sh
# RUN IN REPO ROOT DIR !!
export IMAGE_NAME="git.pbiernat.dev/egommerce/apigw-svc"
TARGET=${1:-latest}
echo "Building: $IMAGE_NAME:$TARGET"
if [ $TARGET = "latest" ]
then
docker build --rm --cache-from "$IMAGE_NAME:$TARGET" -t "$IMAGE_NAME:$TARGET"
else
docker build --rm --no-cache -t "$IMAGE_NAME:$TARGET" . >/dev/null 2>&1
fi
echo "Done."