Skip to content

Commit

Permalink
Update docker base to Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
janisozaur committed Oct 18, 2024
1 parent b0126cc commit a720dbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions develop/cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand All @@ -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 \
Expand Down

0 comments on commit a720dbb

Please sign in to comment.