From 316eba9d420432f5c17444c1dc67e2bf80e3ba86 Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Sat, 24 May 2025 13:39:22 +0000 Subject: [PATCH] ci: Fix scans, prevent pvc files from ending up in the final image --- .trivyignore => .trivyignore.yaml | 0 Dockerfile | 1 + 2 files changed, 1 insertion(+) rename .trivyignore => .trivyignore.yaml (100%) diff --git a/.trivyignore b/.trivyignore.yaml similarity index 100% rename from .trivyignore rename to .trivyignore.yaml diff --git a/Dockerfile b/Dockerfile index 96b6726..d66dd47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,7 @@ RUN apk add --no-cache \ ENV VIRTUAL_ENV=/venv RUN python -m venv $VIRTUAL_ENV ENV PATH="$VIRTUAL_ENV/bin:$PATH" +ENV PYTHONPYCACHEPREFIX="$HOME/.cache/cpython/" # Install CloudBender WORKDIR /app