Skip to content

Commit 64a8dea

Browse files
feat: Update base container image
1 parent 28f1932 commit 64a8dea

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

build/golangci-lint/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile for codedx-golangci-lint
22

3-
ARG BASE=golang:1.24.4-bullseye
3+
ARG BASE=golang:1.24.6-bullseye
44
FROM $BASE as builder
55

66
# Create a directory to store tool findings

build/gosec/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile for codedx-gosecrunner
22

3-
ARG BASE=golang:1.24.4-bullseye
3+
ARG BASE=golang:1.24.6-bullseye
44
FROM $BASE as builder
55

66
# Create a directory to store tool findings

build/govet/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile for codedx-govetrunner
22

3-
ARG BASE=golang:1.24.4-bullseye
3+
ARG BASE=golang:1.24.6-bullseye
44
FROM $BASE as builder
55

66
# Create a directory to store tool findings

build/securitycodescan/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Includes PowerShell Core
2-
FROM mcr.microsoft.com/dotnet/sdk:8.0.411-bookworm-slim-amd64
2+
FROM mcr.microsoft.com/dotnet/sdk:8.0.413-bookworm-slim-amd64
33

44
WORKDIR /tmp
55

build/staticcheck/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile for codedx-staticcheckrunner
22

3-
ARG BASE=golang:1.24.4-bullseye
3+
ARG BASE=golang:1.24.6-bullseye
44
FROM $BASE as builder
55

66
# Create a directory to store tool findings

build/zap/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.4-alpine3.21 AS builder
1+
FROM golang:1.24.6-alpine3.21 AS builder
22

33
ARG ZAP_VERSION=2.16.0
44

@@ -28,7 +28,7 @@ WORKDIR /zap-git
2828
RUN git clone --depth 1 --branch v$ZAP_VERSION https://github.com/zaproxy/zaproxy.git
2929

3030
# java < 15 is required as zap-api-scan and various dependencies it uses require nashorn support
31-
FROM eclipse-temurin:17.0.15_6-jdk-alpine-3.21
31+
FROM eclipse-temurin:17.0.16_8-jdk-alpine-3.21
3232

3333
WORKDIR /zap
3434
COPY --from=builder /zap .

0 commit comments

Comments
 (0)