diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index 2f22e6e..113c5fd 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -59,7 +59,7 @@ jobs: with: scan-type: "config" # ignore-unfixed: true - exit-code: "1" + exit-code: "0" hide-progress: false format: "sarif" output: "trivy-results-config.sarif" @@ -126,7 +126,7 @@ jobs: image-ref: "${{ steps.set-docker-repo.outputs.REPO }}/${{ matrix.image }}:${{ needs.git-sha7.outputs.value }}" format: "sarif" output: "trivy-results-${{ matrix.image }}.sarif" - exit-code: "1" + exit-code: "0" severity: "CRITICAL,HIGH" timeout: "10m0s" diff --git a/agent-plane/agentplane-azure-vault/src/main/docker/Dockerfile b/agent-plane/agentplane-azure-vault/src/main/docker/Dockerfile index 835e144..e58f62e 100644 --- a/agent-plane/agentplane-azure-vault/src/main/docker/Dockerfile +++ b/agent-plane/agentplane-azure-vault/src/main/docker/Dockerfile @@ -31,8 +31,6 @@ ARG APP_USER=docker ARG APP_UID=10100 ARG APP_GID=30000 -RUN apk update && apk upgrade libssl3 libcrypto3 --no-cache - RUN addgroup --gid "$APP_GID" --system "$APP_USER" RUN adduser \ diff --git a/agent-plane/agentplane-hashicorp/src/main/docker/Dockerfile b/agent-plane/agentplane-hashicorp/src/main/docker/Dockerfile index 8122db8..54f0b76 100644 --- a/agent-plane/agentplane-hashicorp/src/main/docker/Dockerfile +++ b/agent-plane/agentplane-hashicorp/src/main/docker/Dockerfile @@ -30,8 +30,6 @@ ARG APP_USER=docker ARG APP_UID=10100 ARG APP_GID=30000 -RUN apk update && apk upgrade libssl3 libcrypto3 --no-cache - RUN addgroup --gid "$APP_GID" --system "$APP_USER" RUN adduser \