Skip to content

Commit

Permalink
Update to new relative paths to Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
swainn authored and Tsubashi committed Jun 28, 2021
1 parent f5fa57d commit f9d5d9c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/push_on_commits_wo_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
# Dockerfile filename
build_file: Dockerfile.collector
# Path to build context
path: ${{github.workspace}}
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag for docker scheduler
uses: aevea/[email protected]
Expand All @@ -102,7 +102,7 @@ jobs:
# Dockerfile filename
build_file: Dockerfile.scheduler
# Path to build context
path: ${{github.workspace}}
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag for docker worker
uses: aevea/[email protected]
Expand All @@ -124,7 +124,7 @@ jobs:
# Dockerfile filename
build_file: Dockerfile.worker
# Path to build context
path: ${{github.workspace}}
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag for docker standalone
uses: aevea/[email protected]
Expand All @@ -146,5 +146,5 @@ jobs:
# Dockerfile filename
build_file: Dockerfile.standalone
# Path to build context
path: ${{github.workspace}}
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
40 changes: 30 additions & 10 deletions .github/workflows/push_on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile
build_file: Dockerfile
# Path to build context
path: .
- name: build and push tag latest for docker base
uses: aevea/[email protected]
with:
Expand All @@ -69,7 +71,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile
build_file: Dockerfile
# Path to build context
path: .
- name: build and push tag for docker collector
uses: aevea/[email protected]
with:
Expand All @@ -88,7 +92,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile.collector
build_file: Dockerfile.collector
# Path to build context
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag latest for docker collector
uses: aevea/[email protected]
Expand All @@ -108,7 +114,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile.collector
build_file: Dockerfile.collector
# Path to build context
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag for docker scheduler
uses: aevea/[email protected]
Expand All @@ -128,7 +136,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile.scheduler
build_file: Dockerfile.scheduler
# Path to build context
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag latest for docker scheduler
uses: aevea/[email protected]
Expand All @@ -148,7 +158,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile.scheduler
build_file: Dockerfile.scheduler
# Path to build context
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag for docker worker
uses: aevea/[email protected]
Expand All @@ -168,7 +180,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile.worker
build_file: Dockerfile.worker
# Path to build context
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag latest for docker worker
uses: aevea/[email protected]
Expand All @@ -188,7 +202,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile.worker
build_file: Dockerfile.worker
# Path to build context
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag for docker standalone
uses: aevea/[email protected]
Expand All @@ -208,7 +224,9 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile.standalone
build_file: Dockerfile.standalone
# Path to build context
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"
- name: build and push tag latest for docker standalone
uses: aevea/[email protected]
Expand All @@ -228,5 +246,7 @@ jobs:
# Docker registry meant to be used as cache
cache_registry: ${{ env.KANIKO_CACHE_REGISTRY }}
# Dockerfile filename
build_file: ${{github.workspace}}/Dockerfile.standalone
build_file: Dockerfile.standalone
# Path to build context
path: .
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest"

0 comments on commit f9d5d9c

Please sign in to comment.