Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#patch] scan local image #110

Merged
merged 2 commits into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
flavor: ${{ inputs.flavor }}
labels: ${{ inputs.labels }}
- name: Build and push
id: push
id: build
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
# v6.10.0
with:
Expand All @@ -113,21 +113,15 @@ jobs:
labels: ${{ steps.metadata.outputs.labels }}
platforms: ${{ inputs.platforms }}
push: ${{ inputs.push }}
load: true
tags: ${{ steps.metadata.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Generate artifact attestation
if: inputs.push
uses: actions/attest-build-provenance@7668571508540a607bdfd90a87a560489fe372eb
# v2.1.0
with:
subject-name: ${{ inputs.registry }}/${{ inputs.image }}
subject-digest: ${{ steps.push.outputs.digest }}
- name: Run Trivy Scan
uses: aquasecurity/trivy-action@18f2510ee396bbf400402947b394f2dd8c87dbb0
# v0.29.0
with:
image-ref: ${{ inputs.registry }}/${{ inputs.image }}
image-ref: ${{ steps.build.outputs.imageid }}
format: sarif
ignore-unfixed: 1
output: ${{ inputs.working-directory }}/trivy_results.sarif
Expand All @@ -137,3 +131,10 @@ jobs:
# v2.19.0
with:
sarif_file: ${{ inputs.working-directory }}/trivy_results.sarif
- name: Generate artifact attestation
if: inputs.push
uses: actions/attest-build-provenance@7668571508540a607bdfd90a87a560489fe372eb
# v2.1.0
with:
subject-name: ${{ inputs.registry }}/${{ inputs.image }}
subject-digest: ${{ steps.build.outputs.digest }}
2 changes: 1 addition & 1 deletion .github/workflows/local-python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
platforms: linux/amd64
push: false
registry: ghcr.io
working-directory: ./auto-tagger/
working-directory: ./auto-tagger
secrets:
registry-username: notdodo
registry-password: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions auto-tagger/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-alpine AS builder
FROM python:3.13-alpine AS builder
HEALTHCHECK NONE

ENV PATH="${PATH}:/app/.local/bin" \
Expand All @@ -10,7 +10,7 @@ ENV PATH="${PATH}:/app/.local/bin" \
POETRY_VIRTUALENVS_CREATE=1

# kics-scan ignore-line
RUN apk add musl-dev libffi-dev gcc --no-cache
RUN apk add --no-cache musl-dev libffi-dev gcc
RUN addgroup -g 1000 app && adduser -G app -u 999 -s /sbin/nologin -h /app app -D
WORKDIR /app
COPY pyproject.toml poetry.lock /app/
Expand All @@ -19,7 +19,7 @@ USER app
RUN pip install poetry==${POETRY_VERSION} --no-cache-dir
RUN poetry install --only main

FROM python:3.12-alpine AS runtime
FROM python:3.13-alpine AS runtime
HEALTHCHECK NONE

ENV VIRTUAL_ENV=/app/.venv \
Expand Down
Loading