From 82972cae71a399a0ff6d460f358d8340b26f2579 Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Tue, 8 Oct 2024 10:31:25 +0200 Subject: [PATCH] chore(docker): update to ubuntu 24 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index efc84557..0aaefbd3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # Build image # ################# -FROM ubuntu:focal AS build +FROM ubuntu:24.04 AS build RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ ca-certificates \ @@ -51,7 +51,7 @@ RUN find /source -name "*.rs" -exec touch {} \; && cargo build --release # Output image # ################## -FROM ubuntu:focal AS binary +FROM ubuntu:24.04 AS binary RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ docker.io \