Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
43 lines (38 loc) · 1.17 KB

File metadata and controls

43 lines (38 loc) · 1.17 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt update && apt install -y --no-install-recommends \
build-essential \
gdb \
git \
ca-certificates \
libssl-dev \
pkg-config \
wget \
unzip \
vim \
tmux && \
apt clean && \
rm -rf /var/lib/apt/lists/*
# Install GTest
RUN apt update && apt install -y --no-install-recommends \
libgtest-dev && \
apt clean && \
rm -rf /var/lib/apt/lists/*
# Install Boost
RUN apt update && apt install -y --no-install-recommends \
libboost-dev && \
apt clean && \
rm -rf /var/lib/apt/lists/*
# Install latest CMake
RUN git clone -b release --depth=1 https://github.com/Kitware/CMake.git && cd CMake && \
./bootstrap && make -j "$(nproc)" && make install && \
cd ../ && rm -rf CMake
# Install Eigen 3.3.9
ENV EIGEN_VERSION="3.3.9"
RUN mkdir -p /tmp/eigen && cd /tmp/eigen && \
wget https://gitlab.com/libeigen/eigen/-/archive/3.3.9/eigen-3.3.9.zip && \
unzip eigen-${EIGEN_VERSION}.zip -d . && \
mkdir /tmp/eigen/eigen-${EIGEN_VERSION}/build && cd /tmp/eigen/eigen-${EIGEN_VERSION}/build/ && \
cmake .. && \
make install && \
cd /tmp && rm -rf eigen
Morty Proxy This is a proxified and sanitized view of the page, visit original site.