From 339c9d54178a57c14bc498781c9ca68051713149 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sat, 2 Aug 2025 18:40:56 +0000 Subject: [PATCH] fix: Dockerfile.worker 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.worker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.worker b/Dockerfile.worker index edcc44e..9d6bd54 100644 --- a/Dockerfile.worker +++ b/Dockerfile.worker @@ -1,5 +1,5 @@ # Stage 1: Base image with dependencies -FROM --platform=linux/amd64 ubuntu:latest as base +FROM --platform=linux/amd64 ubuntu:24.10 as base RUN apt-get update && \ apt-get install -y python3 python3-pip postgresql-client libpq-dev libcurl4-openssl-dev libssl-dev && \ apt-get clean && \