Skip to content

Commit

Permalink
Install recent version of CMake
Browse files Browse the repository at this point in the history
  • Loading branch information
azime committed Aug 29, 2024
1 parent cb307d8 commit 3ee85b7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docker/debian11/Dockerfile-builder-kraken
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,12 @@ RUN git config --global --add safe.directory /navitia/navitia
COPY docker/build_kraken_deb11.sh /build_navitia.sh
RUN chmod +x /build_navitia.sh

# install a more recent version of CMake
RUN apt-get remove --yes cmake \
&& cd /tmp \
&& wget https://cmake.org/files/v3.18/cmake-3.18.6-Linux-x86_64.tar.gz \
&& tar xf cmake-3.18.6-Linux-x86_64.tar.gz --strip-components=1 --directory=/usr/local \
&& rm -f cmake-3.18.6-Linux-x86_64.tar.gz \
&& cd -

ENTRYPOINT ["bash", "/build_navitia.sh"]

0 comments on commit 3ee85b7

Please sign in to comment.