Merge pull request #2087 from kcaran/npm-audit-fix #140
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/push Docker image (master/latest) | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
if: github.repository == 'shaarli/Shaarli' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GitHub Container Registry | |
if: github.repository == 'shaarli/Shaarli' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set shaarli version to the latest commit hash | |
run: sed -i "s/dev/$(git rev-parse --short HEAD)/" shaarli_version.php | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: ${{ github.repository == 'shaarli/Shaarli' }} | |
platforms: linux/amd64,linux/arm64,linux/arm/v7 | |
tags: | | |
${{ secrets.DOCKER_IMAGE }}:latest | |
ghcr.io/${{ secrets.DOCKER_IMAGE }}:latest | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} | |
- name: Run trivy scanner on latest docker image | |
if: github.repository == 'shaarli/Shaarli' | |
run: make test_trivy_docker TRIVY_EXIT_CODE=0 TRIVY_TARGET_DOCKER_IMAGE=ghcr.io/${{ secrets.DOCKER_IMAGE }}:latest |