From 44c634a6ea613c606244273ff7ccbd9ce4c48f2f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 11:18:34 +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