Mercurial > hg > orthanc-stone
view Applications/Samples/WebAssembly/docker-build.sh @ 1542:6e0da8370270
fixing paths
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 11 Aug 2020 14:03:53 +0200 |
parents | d1806b4e4839 |
children | 8c5f9864545f |
line wrap: on
line source
#!/bin/bash set -ex IMAGE=jodogne/wasm-builder:1.39.17-upstream 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/Applications/Samples/WebAssembly/docker-internal.sh $1 ls -lR ${ROOT_DIR}/wasm-binaries/