2022-11-30 02:25:25 +01:00
|
|
|
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
|
|
|
|
|
2024-12-05 16:43:16 +01:00
|
|
|
push-image-dev:
|
|
|
|
- sh ${DEPLOY_DIR}/image-push.sh dev
|
|
|
|
|
2022-11-30 02:25:25 +01:00
|
|
|
push-image-prod:
|
|
|
|
- sh ${DEPLOY_DIR}/image-push.sh
|