diff --git a/.github/workflows/_build_image.yml b/.github/workflows/_build_image.yml index d5e028b2..408c0319 100644 --- a/.github/workflows/_build_image.yml +++ b/.github/workflows/_build_image.yml @@ -32,7 +32,13 @@ on: required: true AWS_REGION: required: true - + DEV_DB_HOST: + required: false + DEV_DB_PORT: + required: false + DEV_DB_NAME: + required: false + jobs: build: runs-on: ubuntu-latest @@ -81,7 +87,7 @@ jobs: temp=$(eval echo "$line") BUILD_ARGS="$BUILD_ARGS --build-arg $temp" done <<< "${{ inputs.build_args }}" - + docker build \ -f ${{ inputs.dockerfile_path }} \ $BUILD_ARGS \