From 9695b5315adedf31c8f9f0472184ad7b2d4769e9 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 5 Aug 2025 05:47:15 +0000 Subject: [PATCH] fix: Dockerfile.server to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UBUNTU2404-TAR-10769052 - https://snyk.io/vuln/SNYK-UBUNTU2404-GLIBC-10321975 - https://snyk.io/vuln/SNYK-UBUNTU2404-GLIBC-10321975 - https://snyk.io/vuln/SNYK-UBUNTU2404-PAM-8303372 - https://snyk.io/vuln/SNYK-UBUNTU2404-PAM-8352843 --- Dockerfile.server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.server b/Dockerfile.server index 0b9d310..138d3f4 100644 --- a/Dockerfile.server +++ b/Dockerfile.server @@ -1,5 +1,5 @@ # Stage 1: Base image with dependencies -FROM --platform=linux/amd64 ubuntu:latest +FROM --platform=linux/amd64 ubuntu:24.10 RUN apt-get update && \ apt-get install -y python3 python3-pip postgresql-client libpq-dev libcurl4-openssl-dev libssl-dev && \ apt-get clean && \