-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ jobs: | |
# Dockerfile filename | ||
build_file: Dockerfile | ||
# Path to build context | ||
path: ${{github.workspace}} | ||
path: . | ||
- name: build and push tag for docker collector | ||
uses: aevea/[email protected] | ||
with: | ||
|
@@ -78,7 +78,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: ${{github.workspace}} | ||
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest" | ||
- name: build and push tag for docker scheduler | ||
uses: aevea/[email protected] | ||
|
@@ -98,7 +100,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: ${{github.workspace}} | ||
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest" | ||
- name: build and push tag for docker worker | ||
uses: aevea/[email protected] | ||
|
@@ -118,7 +122,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: ${{github.workspace}} | ||
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest" | ||
- name: build and push tag for docker standalone | ||
uses: aevea/[email protected] | ||
|
@@ -138,5 +144,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: ${{github.workspace}} | ||
extra_args: "--build-arg BASE_IMAGE=aquaveollc/condor-base:latest" |