Skip to content

Commit 8e068db

Browse files
committed
CI-Integration
1 parent 34b5c63 commit 8e068db

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ build_and_deploy_steps: &build_and_deploy_steps
3434
- run:
3535
name: Build Docker Image
3636
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 .
3939
- deploy:
4040
name: Deploy Using MasterScript
4141
command: |

build.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
#!/bin/bash
22
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 .

0 commit comments

Comments
 (0)