changing the folder name to be plural and added a new node monitor to… #2474
Workflow file for this run
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
name: Build Python Base Images and Push to Quay and ECR | |
on: push | |
jobs: | |
python_3-9: | |
name: Python 3.9 Build and Push | |
uses: uc-cdis/.github/.github/workflows/image_build_push.yaml@master | |
with: | |
DOCKERFILE_LOCATION: "./Docker/python-nginx/python3.9-buster/Dockerfile" | |
DOCKERFILE_BUILD_CONTEXT: "./Docker/python-nginx/python3.9-buster" | |
OVERRIDE_REPO_NAME: "python" | |
OVERRIDE_TAG_NAME: "python3.9-buster-$(echo ${GITHUB_REF#refs/*/} | tr / _)" | |
secrets: | |
ECR_AWS_ACCESS_KEY_ID: ${{ secrets.ECR_AWS_ACCESS_KEY_ID }} | |
ECR_AWS_SECRET_ACCESS_KEY: ${{ secrets.ECR_AWS_SECRET_ACCESS_KEY }} | |
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
QUAY_ROBOT_TOKEN: ${{ secrets.QUAY_ROBOT_TOKEN }} | |
python_3-10: | |
name: Python 3.10 Build and Push | |
uses: uc-cdis/.github/.github/workflows/image_build_push.yaml@master | |
with: | |
DOCKERFILE_LOCATION: "./Docker/python-nginx/python3.10-buster/Dockerfile" | |
DOCKERFILE_BUILD_CONTEXT: "./Docker/python-nginx/python3.10-buster" | |
OVERRIDE_REPO_NAME: "python" | |
OVERRIDE_TAG_NAME: "python3.10-buster-$(echo ${GITHUB_REF#refs/*/} | tr / _)" | |
secrets: | |
ECR_AWS_ACCESS_KEY_ID: ${{ secrets.ECR_AWS_ACCESS_KEY_ID }} | |
ECR_AWS_SECRET_ACCESS_KEY: ${{ secrets.ECR_AWS_SECRET_ACCESS_KEY }} | |
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
QUAY_ROBOT_TOKEN: ${{ secrets.QUAY_ROBOT_TOKEN }} | |
awshelper: | |
name: AwsHelper Build and Push | |
uses: uc-cdis/.github/.github/workflows/image_build_push.yaml@master | |
with: | |
DOCKERFILE_LOCATION: "./Docker/awshelper/Dockerfile" | |
OVERRIDE_REPO_NAME: "awshelper" | |
secrets: | |
ECR_AWS_ACCESS_KEY_ID: ${{ secrets.ECR_AWS_ACCESS_KEY_ID }} | |
ECR_AWS_SECRET_ACCESS_KEY: ${{ secrets.ECR_AWS_SECRET_ACCESS_KEY }} | |
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
QUAY_ROBOT_TOKEN: ${{ secrets.QUAY_ROBOT_TOKEN }} |