Skip to content

Commit

Permalink
feat: Use CMake 3.30 for Ubuntu 22.04 docker (#2898)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrogTheFrog authored Jul 19, 2024
1 parent 0ca560c commit f694137
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docker/ubuntu-22.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,27 @@ apt-get clean
rm -rf /var/lib/apt/lists/*
_DEPS

# install cmake
# sunshine requires cmake >= 3.25
WORKDIR /build/cmake
# https://cmake.org/download/
ENV CMAKE_VERSION="3.30.1"
# hadolint ignore=SC3010
RUN <<_INSTALL_CMAKE
#!/bin/bash
cmake_prefix="https://github.com/Kitware/CMake/releases/download/v"
if [[ "${TARGETPLATFORM}" == 'linux/amd64' ]]; then
cmake_arch="x86_64"
elif [[ "${TARGETPLATFORM}" == 'linux/arm64' ]]; then
cmake_arch="aarch64"
fi
url="${cmake_prefix}${CMAKE_VERSION}/cmake-${CMAKE_VERSION}-linux-${cmake_arch}.sh"
echo "cmake url: ${url}"
wget "$url" --progress=bar:force:noscroll -q --show-progress -O ./cmake.sh
sh ./cmake.sh --prefix=/usr/local --skip-license
cmake --version
_INSTALL_CMAKE

#Install Node
# hadolint ignore=SC1091
RUN <<_INSTALL_NODE
Expand Down

0 comments on commit f694137

Please sign in to comment.