Skip to content
Snippets Groups Projects
Verified Commit f4dbd90c authored by Justin Carpentier's avatar Justin Carpentier
Browse files

docker: add docker for easy docker setup

parent f858aef5
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:22.04
RUN apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -qqy \
build-essential \
cmake \
cmake-curses-gui \
vim \
gdb \
git \
libboost-all-dev \
libeigen3-dev \
liburdfdom-dev \
python3-numpy
WORKDIR /src
RUN git clone --recursive -j2 -b devel https://github.com/stack-of-tasks/eigenpy
ENV CTEST_OUTPUT_ON_FAILURE=ON
ENV CTEST_PROGRESS_OUTPUT=ON
ENV CTEST_PARALLEL_LEVEL=2
WORKDIR /src/eigenpy/build
RUN cmake -DPYTHON_EXECUTABLE=$(which python3) -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=ON ..
RUN make -sj2
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