From 4104d6527cb6cca154834edb61b3183993fcc8f4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 17 Feb 2026 10:07:59 +0000 Subject: [PATCH] fix: Dockerfile.client to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-15121241 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-15121241 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-15121238 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-15121250 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-15121251 --- Dockerfile.client | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.client b/Dockerfile.client index 93eb1bed..f16e1dd8 100644 --- a/Dockerfile.client +++ b/Dockerfile.client @@ -1,14 +1,14 @@ FROM mwader/static-ffmpeg:7.1.1 AS ffmpeg # Go Binary Builder -FROM golang:1.24.1-alpine AS go-build +FROM golang:1.26.0-alpine AS go-build WORKDIR /app COPY . . RUN go get -v && \ go build -o streamdl # Golang Protobuf Client and Logic -FROM golang:1.24.1-alpine AS client +FROM golang:1.26.0-alpine AS client # Install su-exec for running as non-root RUN apk add --no-cache su-exec