From 91cb968a6159ddfe2cf0a09198a5244acaf44d9a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 05:53:41 +0000 Subject: [PATCH] Update ubuntu Docker tag to v24 --- Dockerfile.server | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.server b/Dockerfile.server index 9c3657db..430adfa0 100644 --- a/Dockerfile.server +++ b/Dockerfile.server @@ -1,4 +1,4 @@ -FROM ubuntu:jammy as builder +FROM ubuntu:noble as builder ARG PIP_INDEX_URL ARG PIP_TRUSTED_HOST @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y curl python3-dev gcc git g++ libc6-dev RUN pip install -U pip RUN --mount=type=tmpfs,target=/root/.cargo /bin/bash -c 'curl https://sh.rustup.rs -sSf | bash -s -- -y && source ~/.cargo/env && MAKEFLAGS="-j $(nproc)" pip install . -v' -FROM ubuntu:jammy +FROM ubuntu:noble COPY --from=builder /usr/local /usr/local