From 3eeb6d8a2a20036eca80184bfcf10de6e395f0ff Mon Sep 17 00:00:00 2001 From: Glenn Schuurman Date: Tue, 10 Dec 2024 19:24:56 +0000 Subject: [PATCH] Upgrade crafty to ubuntu 24.04 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d05cf3d0..8c16e3a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 ENV DEBIAN_FRONTEND="noninteractive" @@ -36,7 +36,7 @@ WORKDIR /crafty COPY --chown=crafty:root requirements.txt ./ RUN python3 -m venv ./.venv \ && . .venv/bin/activate \ - && pip3 install --no-cache-dir --upgrade setuptools==50.3.2 pip==22.0.3 \ + && pip3 install --no-cache-dir --upgrade setuptools==75.6.0 pip==24.3.1 \ && pip3 install --no-cache-dir -r requirements.txt \ && deactivate USER root