-
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.
Update to new relative paths to Dockerfiles
- Loading branch information
Showing
2 changed files
with
34 additions
and
14 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 |
---|---|---|
|
@@ -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] | ||
|
@@ -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] | ||
|
@@ -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] | ||
|
@@ -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" |
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 |
---|---|---|
|
@@ -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: | ||
|
@@ -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: | ||
|
@@ -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] | ||
|
@@ -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] | ||
|
@@ -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] | ||
|
@@ -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] | ||
|
@@ -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] | ||
|
@@ -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] | ||
|
@@ -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] | ||
|
@@ -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" |