From 7637a879cbb47491dddc2d4cf125ed9911adc763 Mon Sep 17 00:00:00 2001 From: Dorian Koch <doriank@fsmpi.rwth-aachen.de> Date: Sat, 18 May 2024 18:38:19 +0200 Subject: [PATCH] Add --no-install-recommends and specified ubuntu version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6bd19d2..de0fa9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM ubuntu +FROM ubuntu:24.04 RUN apt-get update -RUN apt-get install -y build-essential curl ffmpeg git busybox inkscape +RUN apt-get install -y --no-install-recommends build-essential curl ffmpeg git busybox inkscape ca-certificates RUN curl https://sh.rustup.rs -sSf | bash -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" -- GitLab