From 0601b1a61e5647db2b02d4774df6d50b8c94c3b6 Mon Sep 17 00:00:00 2001 From: "franz.germann1" Date: Thu, 12 Dec 2024 15:28:47 +0100 Subject: [PATCH] test actions --- complete/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/complete/Dockerfile b/complete/Dockerfile index 3d8da39..fb78a5a 100644 --- a/complete/Dockerfile +++ b/complete/Dockerfile @@ -2,11 +2,12 @@ FROM --platform=linux/amd64 gcr.io/kaniko-project/executor:v1.23.2 AS kaniko FROM --platform=linux/amd64 golang:1.23-alpine +RUN apk add sudo curl # linting RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.61.0 # trivy -RUN curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sudo sh -s -- -b /usr/local/bin v0.58.0-1-g775f954c3 +RUN curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sudo sh -s -- -b /usr/bin latest # git RUN apk add --no-cache git