From 0cc021788074c9f46f39322c96ad1a54f966cda1 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Fri, 6 Dec 2019 15:50:59 -0800 Subject: [PATCH] Mount the same path inside the container so coverage report is accurate --- resources/scripts/cmd-proxy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/scripts/cmd-proxy.sh b/resources/scripts/cmd-proxy.sh index 09103f2..f44eb56 100755 --- a/resources/scripts/cmd-proxy.sh +++ b/resources/scripts/cmd-proxy.sh @@ -18,8 +18,8 @@ cmd_proxy="" if [ "${architecture}" = "arm32" ]; then image="benramsey/ramsey-uuid:php-${php_version}-arm32v7" - volumes="-v ${PWD}:/app" - cmd_proxy="docker run --rm ${volumes} -w /app ${image}" + volumes="-v ${PWD}:${PWD}" + cmd_proxy="docker run --rm ${volumes} -w ${PWD} ${image}" fi $cmd_proxy "$@"