File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ FROM ubuntu:14.04
22WORKDIR /nativebinaries
33COPY . /nativebinaries/
44
5- RUN apt update && apt -y install cmake libssl-dev pkg-config
5+ RUN apt update && apt -y install libssl-dev pkg-config curl make gcc build-essential
6+
7+ RUN curl -L https://github.com/Kitware/CMake/releases/download/v3.15.4/cmake-3.15.4-Linux-x86_64.sh -o /tmp/cmake.sh && bash /tmp/cmake.sh --skip-license --prefix=/usr/local
68
79CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
Original file line number Diff line number Diff line change @@ -3,5 +3,6 @@ WORKDIR /nativebinaries
33COPY . /nativebinaries/
44
55RUN yum -y install cmake gcc make openssl-devel
6+ RUN curl -L https://github.com/Kitware/CMake/releases/download/v3.15.4/cmake-3.15.4-Linux-x86_64.sh -o /tmp/cmake.sh && bash /tmp/cmake.sh --skip-license --prefix=/usr/local
67
78CMD ["/bin/bash", "-c", "./build.libgit2.sh"]
You can’t perform that action at this time.
0 commit comments