Mercurial > hg > orthanc-python
view Resources/Builders/Debian/docker-internal.sh @ 88:81a0975a2479
distinguishing Debian docker-based builds between buster and bullseye
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 19 Aug 2021 11:11:55 +0200 |
parents | Resources/Builders/DebianStable/docker-internal.sh@8ec973ae8d6c |
children | 74a51200a134 |
line wrap: on
line source
#!/bin/bash set -ex BUILD_TYPE=$1 PYTHON_VERSION=$2 USER_ID=$3 GROUP_ID=$4 # Create the same user and group than the one who is running the # "./docker-{distro}-compile.sh" script on the hosting system (*) groupadd -g ${GROUP_ID} -r orthanc useradd -u ${USER_ID} -r -g orthanc orthanc apt-get update apt-get -y install nano build-essential unzip cmake pkg-config libpython3-dev mercurial apt-get clean rm -rf /var/lib/apt/lists/* mkdir /tmp/source-writeable cp -r /source/CMakeLists.txt /tmp/source-writeable/ cp -r /source/Sources /tmp/source-writeable/ cp -r /source/Resources /tmp/source-writeable/ mkdir /tmp/build cd /tmp/build cmake /tmp/source-writeable/ \ -DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ -DPYTHON_VERSION=${PYTHON_VERSION} \ -DSTATIC_BUILD=ON \ -DCMAKE_INSTALL_PREFIX=/target make -j`nproc` if [ "$1" == "Release" ]; then strip ./libOrthancPython.so fi # Copy the installation to the host filesystem, using the # newly-created user "orthanc" (*) that corresponds to the user who is # running "./debian-{distro}-compile.sh" script. This allows to avoid # files owned by the "root" user on the host filesystem. su -c "cp /tmp/build/libOrthancPython.so /target" orthanc