Merge branch 'develop'
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Piotr Biernat 2022-10-12 17:51:53 +02:00
commit b6ac03b838
3 changed files with 24 additions and 1 deletions

View File

@ -1,6 +1,7 @@
FROM nginx:alpine
LABEL author="Piotr Biernat"
LABEL service="api-gw"
LABEL vendor="Egommerce"
LABEL version="1.0"

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
DEPLOY_DIR := ./deploy
SRC_DIR := ./src
## DEPLOY PART
build-image-dev:
- sh ${DEPLOY_DIR}/image-build.sh dev
build-image-prod:
- sh ${DEPLOY_DIR}/image-build.sh
push-image-prod:
- sh ${DEPLOY_DIR}/image-push.sh

View File

@ -3,4 +3,14 @@
export IMAGE_NAME="git.pbiernat.dev/egommerce/apigw-svc"
docker build --rm --cache-from "$IMAGE_NAME:latest" -t "$IMAGE_NAME:latest" .
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."