Skip to content

Commit

Permalink
Merge pull request #105 from ARC-OPT/dockerfile
Browse files Browse the repository at this point in the history
Add docker file
  • Loading branch information
dmronga authored Aug 16, 2024
2 parents ebdf82b + 11bd018 commit 069dee2
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM ubuntu:22.04
WORKDIR /root
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt-get -y install git cmake build-essential libboost-system-dev libboost-program-options-dev libboost-thread-dev libboost-test-dev pkg-config libeigen3-dev libboost-filesystem-dev
WORKDIR /root
COPY install.sh /install.sh
RUN /install.sh
48 changes: 48 additions & 0 deletions docker/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#!/bin/sh
apt-get -y install git cmake build-essential libboost-system-dev libboost-program-options-dev libboost-thread-dev libboost-test-dev pkg-config libeigen3-dev libboost-filesystem-dev

# cmake makros
git clone https://github.com/rock-core/base-cmake.git
mkdir base-cmake/build && cd base-cmake/build
cmake .. && make -j8 && make install && cd ../..

# Logging
git clone https://github.com/rock-core/base-logging.git
mkdir base-logging/build && cd base-logging/build
cmake .. && make -j8 && make install && cd ../..

# Base Types
git clone https://github.com/rock-core/base-types.git
mkdir base-types/build && cd base-types/build
cmake .. -DUSE_SISL=OFF -DBINDINGS_RUBY=OFF -DROCK_VIZ_ENABLED=OFF
make -j8 && make install && cd ../..

# URDF
apt-get -y install liburdfdom-headers-dev liburdfdom-dev

# Clone WBC repo here to have the patches
git clone https://github.com/ARC-OPT/wbc.git

# Pinocchio
git clone --branch v2.6.8 --recurse-submodules https://github.com/stack-of-tasks/pinocchio.git
cd pinocchio
mkdir build && cd build
cmake .. -DBUILD_PYTHON_INTERFACE=OFF -DBUILD_UNIT_TESTS=OFF -DCMAKE_BUILD_TYPE=RELEASE
make -j8 && make install && cd ../..

# If not done yet, setup a ssh key pair using the command `ssh-keygen` and add the
# key from `~/.ssh/id_rsa.pub `to the keys in your Gitlab account.

# qpOASES
git clone https://github.com/coin-or/qpOASES.git -b releases/3.2.0
cd qpOASES
mkdir patches && cp ../wbc/patches/qpOASES.patch patches
git apply patches/qpOASES.patch
mkdir build && cd build
cmake .. && make -j8 && make install && cd ../..

# WBC
mkdir wbc/build && cd wbc/build
cmake .. -DCMAKE_BUILD_TYPE=RELEASE
make -j8 && make install
ldconfig

0 comments on commit 069dee2

Please sign in to comment.