api-eventbus/deploy/image-build.sh

17 lines
379 B
Bash
Raw Normal View History

2022-11-30 02:28:31 +01:00
#!/bin/sh
# RUN IN REPO ROOT DIR !!
2024-07-20 13:30:27 +02:00
export IMAGE_NAME="git.pbiernat.io/egommerce/api-eventbus"
2022-11-30 02:28:31 +01:00
TARGET=${1:-latest}
echo "Building: $IMAGE_NAME:$TARGET"
if [ $TARGET = "dev" ]
then
docker build --rm --no-cache -t "$IMAGE_NAME:dev" . # >/dev/null 2>&1
else
docker build --rm --cache-from "$IMAGE_NAME:$TARGET" -t "$IMAGE_NAME:$TARGET" . >/dev/null 2>&1
fi
echo "Done."