Skip to content
Snippets Groups Projects
Commit 0052d18d authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

update eigenpy docker

parent 8be7f17b
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:focal
FROM ubuntu:noble
ENV CTEST_OUTPUT_ON_FAILURE=true
......@@ -10,14 +10,18 @@ RUN apt-get update -y \
libboost-all-dev \
libeigen3-dev \
python3-numpy \
python3-scipy \
python-is-python3 \
&& rm -rf /var/lib/apt/lists/*
ARG EIGENPY=2.6.4
ARG EIGENPY=3.10.1
ADD https://github.com/stack-of-tasks/eigenpy/releases/download/v${EIGENPY}/eigenpy-${EIGENPY}.tar.gz /
RUN tar xf /eigenpy-${EIGENPY}.tar.gz
WORKDIR /eigenpy-${EIGENPY}/build
RUN cmake ..
RUN cmake -B build -S /eigenpy-${EIGENPY} -DPYTHON_STANDARD_LAYOUT=ON -DPYTHON_DEB_LAYOUT=ON
RUN cmake --build build -j16
RUN cmake --build build -t test
RUN cmake --build build -t install
RUN python -c "import eigenpy"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment