Skip to content
Snippets Groups Projects

Add build script to docker images

Merged Jørgen Lind requested to merge feature/jorgen.lind/docker_images_buildscript into master
9 files
+ 40
2
Compare changes
  • Side-by-side
  • Inline
Files
9
+ 7
0
#!/bin/sh
git clone --depth 1 --single-branch https://community.opengroup.org/osdu/platform/domain-data-mgmt-services/seismic/open-vds.git
cd open-vds
mkdir build_release
cd build_release
scl enable rh-python36 devtoolset-8 "cmake -DCMAKE_BUILD_TYPE=Release -GNinja -DBOOST_INCLUDEDIR=/usr/include/boost169 -DBOOST_LIBRARYDIR=/usr/lib64/boost169 -DCMAKE_INSTALL_PREFIX=../../open-vds-install .."
scl enable rh-python36 devtoolset-8 "ninja install"
Loading