Skip to content

Commit

Permalink
fix: fixes docker build and trivy scan
Browse files Browse the repository at this point in the history
There is a transitiv dependency on frozenlist, which updated their package for python 3.11, but didn't add the package to pypi wheels. Thus, building on python >= 3.11 fails the whole docker building process ([issue](aio-libs/frozenlist#342)). Switching to python 3.10. Secondly, there are two more vulnerabilities due to cosign, which cannot be fixed on our side. Ignore listing them until cosign publishes a new version.
  • Loading branch information
phbelitz committed Nov 3, 2022
1 parent da020e7 commit 7bb3700
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .trivyignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
CVE-2022-23628
CVE-2022-28946
CVE-2022-28948
CVE-2022-32149
GHSA-69ch-w2m2-3vjp
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3-alpine as base
FROM python:3.10-alpine as base

# Build dependencies
FROM base as builder
Expand Down
2 changes: 1 addition & 1 deletion helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: connaisseur
description: Helm chart for Connaisseur - a Kubernetes admission controller to integrate container image signature verification and trust pinning into a cluster.
type: application
version: 1.4.4
appVersion: 2.6.4
appVersion: 2.6.5
keywords:
- container image
- signature
Expand Down
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# configure Connaisseur deployment
deployment:
replicasCount: 3
image: securesystemsengineering/connaisseur:v2.6.4
image: securesystemsengineering/connaisseur:v2.6.5
imagePullPolicy: IfNotPresent
# imagePullSecrets contains an optional list of Kubernetes Secrets, in Connaisseur namespace,
# that are needed to access the registry containing Connaisseur image.
Expand Down

0 comments on commit 7bb3700

Please sign in to comment.