diff --git a/develop/cli/Dockerfile b/develop/cli/Dockerfile index ac10b29..28e3f21 100644 --- a/develop/cli/Dockerfile +++ b/develop/cli/Dockerfile @@ -1,5 +1,5 @@ # Build OpenRCT2 -FROM ubuntu:22.04 AS build-env +FROM ubuntu:24.04 AS build-env ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install --no-install-recommends -y git cmake pkg-config ninja-build clang-14 nlohmann-json3-dev libcurl4-openssl-dev libcrypto++-dev libfontconfig1-dev libfreetype6-dev libpng-dev libzip-dev libssl-dev libicu-dev libflac-dev libvorbis-dev \ @@ -20,7 +20,7 @@ RUN git -c http.sslVerify=false clone --depth 1 -b $OPENRCT2_REF https://github. && rm -rf /openrct2-install/usr/share/openrct2-cli # Build runtime image -FROM ubuntu:22.04 +FROM ubuntu:24.04 # Install OpenRCT2 COPY --from=build-env /openrct2-install /openrct2-install RUN apt-get update \