Update base image to Ubuntu 24.04

This commit is contained in:
Héctor Molinero Fernández 2024-07-26 23:28:56 +02:00
parent 3e78cb0215
commit 38c0c79d76

View File

@ -4,7 +4,7 @@ m4_changequote([[, ]])
## "build" stage ## "build" stage
################################################## ##################################################


FROM --platform=${BUILDPLATFORM} docker.io/ubuntu:22.04 AS build FROM --platform=${BUILDPLATFORM} docker.io/ubuntu:24.04 AS build


# Install system packages # Install system packages
RUN export DEBIAN_FRONTEND=noninteractive \ RUN export DEBIAN_FRONTEND=noninteractive \
@ -92,7 +92,7 @@ RUN mkisofs -no-emul-boot -iso-level 4 -eltorito-boot loader/isoboot.bin -o /tmp
## "base" stage ## "base" stage
################################################## ##################################################


m4_ifdef([[CROSS_ARCH]], [[FROM docker.io/CROSS_ARCH/ubuntu:22.04]], [[FROM docker.io/ubuntu:22.04]]) AS base m4_ifdef([[CROSS_ARCH]], [[FROM docker.io/CROSS_ARCH/ubuntu:24.04]], [[FROM docker.io/ubuntu:24.04]]) AS base


# Install system packages # Install system packages
RUN export DEBIAN_FRONTEND=noninteractive \ RUN export DEBIAN_FRONTEND=noninteractive \