Mercurial > hg > orthanc-stone
view StoneWebViewer/WebAssembly/docker-build.sh @ 1527:4c4b267e4004
RtViewerPlugin : similar to the StoneWebPlugin, but for the sole RtViewer sample
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Sun, 02 Aug 2020 15:13:58 +0200 |
parents | d450653b46d3 |
children |
line wrap: on
line source
#!/bin/bash set -ex IMAGE=jodogne/wasm-builder:1.39.17-upstream #IMAGE=wasm-builder if [ "$1" != "Debug" -a "$1" != "Release" ]; then echo "Please provide build type: Debug or Release" exit -1 fi if [ -t 1 ]; then # TTY is available => use interactive mode DOCKER_FLAGS='-i' fi ROOT_DIR=`dirname $(readlink -f $0)`/../.. mkdir -p ${ROOT_DIR}/wasm-binaries docker run -t ${DOCKER_FLAGS} --rm \ --user $(id -u):$(id -g) \ -v ${ROOT_DIR}:/source:ro \ -v ${ROOT_DIR}/wasm-binaries:/target:rw ${IMAGE} \ bash /source/StoneWebViewer/WebAssembly/docker-internal.sh $1 ls -lR ${ROOT_DIR}/wasm-binaries/StoneWebViewer/