From 70fe84542153691f2a2935afde22a77f114134db Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 29 Jul 2025 20:29:18 +0000 Subject: [PATCH] fix: autogpt_platform/market/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690985 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690987 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690990 - https://snyk.io/vuln/SNYK-DEBIAN12-GNUTLS28-10690993 - https://snyk.io/vuln/SNYK-DEBIAN12-KRB5-6277421 --- autogpt_platform/market/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogpt_platform/market/Dockerfile b/autogpt_platform/market/Dockerfile index dbd12565db3c..3271c1fa02a4 100644 --- a/autogpt_platform/market/Dockerfile +++ b/autogpt_platform/market/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.10-slim-bookworm AS builder +FROM python:3.14.0rc1-slim-bookworm AS builder # Set environment variables ENV PYTHONDONTWRITEBYTECODE 1 @@ -39,7 +39,7 @@ COPY autogpt_platform/market /app/autogpt_platform/market RUN poetry config virtualenvs.create false \ && poetry run prisma generate -FROM python:3.11.10-slim-bookworm AS server_dependencies +FROM python:3.14.0rc1-slim-bookworm AS server_dependencies WORKDIR /app