Skip to content

Commit

Permalink
build: Install cmake3
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-auer committed May 20, 2022
1 parent 6ff8eb2 commit fd76545
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ ENV BUILD_ARCH=${BUILD_ARCH}
ENV BUILD_TARGET=${BUILD_ARCH}-unknown-linux-gnu

RUN yum -y update \
&& yum -y install cmake curl gcc git make zip \
&& yum -y install epel-release \
cmake3 curl gcc git make zip \
# below required for sentry-native
clang libcurl-devel \
&& yum clean all \
&& rm -rf /var/cache/yum
&& rm -rf /var/cache/yum \
&& ln -s /usr/bin/cmake3 /usr/bin/cmake

ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
Expand Down

0 comments on commit fd76545

Please sign in to comment.