Skip to content
Snippets Groups Projects
Commit 8239a293 authored by Jørgen Lind's avatar Jørgen Lind
Browse files

Update osdu docker image

parent d4166327
No related branches found
Tags 2.1.0
No related merge requests found
3rdparty
!3rdparty/BuildDms
!3rdparty/BuildGoogleCloud
out
build_*
_skbuild
......
#!/bin/sh
REPO='open-vds'
if [ $# -gt 0 ]
then
REPO=$1
shift
fi
cd $REPO
mkdir build_release
cd build_release
cmake -DCMAKE_BUILD_TYPE=Release "$@" -GNinja -DCMAKE_INSTALL_PREFIX=../../$REPO-install ..
ninja install
......@@ -24,8 +24,9 @@ RUN pip3 install ninja
COPY python/requirements-dev-with-docs.txt /tmp/requirements-dev.txt
RUN pip3 install -r tmp/requirements-dev.txt
COPY docker/build_scripts/generic_linux_build.sh /root/build_and_install_openvds.sh
RUN cd root && bash /root/build_and_install_openvds.sh ${tag} ${repo} -DBUILD_PYTHON=OFF -DBUILD_JAVA=OFF -DBUILD_DOCS=OFF -DBUILD_TESTS=OFF -DBUILD_EXAMPLES=OFF
COPY docker/build_scripts/osdu_linux_build.sh /root/build_and_install_openvds.sh
COPY . /root/open-vds
RUN cd root && bash /root/build_and_install_openvds.sh open-vds -DBUILD_PYTHON=OFF -DBUILD_JAVA=OFF -DBUILD_DOCS=OFF -DBUILD_TESTS=OFF -DBUILD_EXAMPLES=OFF
# Deploy stage
......
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