Skip to content

Commit

Permalink
fix: Container build context
Browse files Browse the repository at this point in the history
  • Loading branch information
JossWhittle committed Oct 11, 2023
1 parent 20cb469 commit 5029f68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/on-pr-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
container-registry-repo: airflow/base
slack-channel: ${{ vars.SLACK_CHANNEL }}
build-command: |
docker build -t $IMAGE -f containers/airflow/base/Dockerfile containers/airflow/base
docker build -t $IMAGE -f containers/airflow/base/Dockerfile .
secrets:
container-registry-token: ${{ secrets.HARBOR_TOKEN }}
slack-token: ${{ secrets.SLACK_TOKEN }}
Expand All @@ -64,7 +64,7 @@ jobs:
container-registry-repo: airflow/dags
slack-channel: ${{ vars.SLACK_CHANNEL }}
build-command: |
docker build -t $IMAGE -f containers/airflow/dags/Dockerfile containers/airflow/dags
docker build -t $IMAGE -f containers/airflow/dags/Dockerfile .
secrets:
container-registry-token: ${{ secrets.HARBOR_TOKEN }}
slack-token: ${{ secrets.SLACK_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
container-registry-repo: airflow/base
slack-channel: ${{ vars.SLACK_CHANNEL }}
build-command: |
docker build -t $IMAGE -f containers/airflow/base/Dockerfile containers/airflow/base
docker build -t $IMAGE -f containers/airflow/base/Dockerfile .
secrets:
container-registry-token: ${{ secrets.HARBOR_TOKEN }}
slack-token: ${{ secrets.SLACK_TOKEN }}
Expand All @@ -63,7 +63,7 @@ jobs:
container-registry-repo: airflow/dags
slack-channel: ${{ vars.SLACK_CHANNEL }}
build-command: |
docker build -t $IMAGE -f containers/airflow/dags/Dockerfile containers/airflow/dags
docker build -t $IMAGE -f containers/airflow/dags/Dockerfile .
secrets:
container-registry-token: ${{ secrets.HARBOR_TOKEN }}
slack-token: ${{ secrets.SLACK_TOKEN }}

0 comments on commit 5029f68

Please sign in to comment.