15 lines
256 B
Makefile
15 lines
256 B
Makefile
DEPLOY_DIR := ./deploy
|
|
|
|
## DEPLOY PART
|
|
build-image-dev:
|
|
- sh ${DEPLOY_DIR}/image-build.sh dev
|
|
|
|
build-image-prod:
|
|
- sh ${DEPLOY_DIR}/image-build.sh
|
|
|
|
push-image-dev:
|
|
- sh ${DEPLOY_DIR}/image-push.sh dev
|
|
|
|
push-image-prod:
|
|
- sh ${DEPLOY_DIR}/image-push.sh
|