Update Dockerfile #119
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: Docker Image Build | |
# Need manually created | |
# DOCKERHUB_USERNAME | |
# DOCKERHUB_TOKEN | |
# DOCKERHUB_IMAGE_NAME | |
on: | |
push: | |
branches: [ 'develop' ] #rolling build on develop only | |
tags: 'v*' #tag for specific release v1.0.2,or anytag, start with v | |
pull_request: | |
branches: [ 'master' ] #build test on main, not pushing | |
workflow_dispatch: | |
jobs: | |
dockerize: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
# This is used to complete the identity challenge | |
# with sigstore/fulcio when running outside of PRs. | |
id-token: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Setup 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: Docker meta | |
id: metaid | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_IMAGE_NAME }} | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} #push except PR. | |
platforms: linux/amd64,linux/arm64 | |
# platforms: linux/amd64 | |
tags: ${{ steps.metaid.outputs.tags }} | |
labels: ${{ steps.metaid.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |