Merge pull request #141 from OWASP/dependabot/pip/src/pip-cef70b0dd7 #118
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 and Push Dev/main OWASP OFFAT Docker Images to DockerHub" | |
on: | |
push: | |
branches: | |
- "main" | |
- "dev" | |
jobs: | |
build-and-push-dev-docker-images: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Branch Checkout | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push offat-base docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./src/ | |
file: ./src/DockerFiles/wolfi-base-Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/offat-base:${{ github.head_ref || github.ref_name }} | |
platforms: linux/amd64,linux/arm64 | |
- name: Build and push offat docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./src/ | |
file: ./src/DockerFiles/dev/cli-Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/offat:${{ github.head_ref || github.ref_name }} | |
platforms: linux/amd64,linux/arm64 | |
- name: Build and push offat-api docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./src/ | |
file: ./src/DockerFiles/dev/backend-api-Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/offat-api:${{ github.head_ref || github.ref_name }} | |
platforms: linux/amd64,linux/arm64 | |
- name: Build and push offat-api-worker docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./src/ | |
file: ./src/DockerFiles/dev/backend-api-worker-Dockerfile | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/offat-api-worker:${{ github.head_ref || github.ref_name }} | |
platforms: linux/amd64,linux/arm64 |