File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ build_and_deploy_steps: &build_and_deploy_steps
34
34
- run :
35
35
name : Build Docker Image
36
36
command : |
37
- # ./build.sh <<pipeline.parameters.reset-db>>
38
- docker buildx build --no-cache=true --build-arg RESET_DB_ARG=<<pipeline.parameters.reset-db>> --build-arg SEED_DATA_ARG=${DEPLOYMENT_ENVIRONMENT} -t ${APPNAME}:latest .
37
+ ./build.sh <<pipeline.parameters.reset-db>>
38
+ # docker buildx build --no-cache=true --build-arg RESET_DB_ARG=<<pipeline.parameters.reset-db>> --build-arg SEED_DATA_ARG=${DEPLOYMENT_ENVIRONMENT} -t ${APPNAME}:latest .
39
39
- deploy :
40
40
name : Deploy Using MasterScript
41
41
command : |
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -eo pipefail
3
- RESET_DB_VALUE=$1
4
- docker buildx build --no-cache=true --build-arg RESET_DB_ARG=${RESET_DB_VALUE} --build-arg SEED_DATA_ARG=${DEPLOYMENT_ENVIRONMENT} -t ${APPNAME} }:latest .
3
+ docker buildx build --no-cache=true --build-arg RESET_DB_ARG=<< pipeline.parameters.reset-db>> --build-arg SEED_DATA_ARG=${DEPLOYMENT_ENVIRONMENT} -t ${APPNAME} }:latest .
You can’t perform that action at this time.
0 commit comments