From 7224b4427d48338cac26fbc519a5afb2e71583b7 Mon Sep 17 00:00:00 2001 From: Edward Viaene Date: Wed, 2 Oct 2024 20:29:01 +0200 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities (#110) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413523 - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413523 - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413527 - https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413527 Co-authored-by: snyk-bot --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2ccfa15..1559c4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN apk add -u -t build-tools curl git && \ # # Runtime container # -FROM alpine:3.19.2 +FROM alpine:3.19.3 WORKDIR /app