From 1fc134e49fda6336c6cbdb492126e37706516184 Mon Sep 17 00:00:00 2001 From: Derk-Jan Karrenbeld Date: Mon, 12 Aug 2024 17:37:51 +0200 Subject: [PATCH] Remove :exec flag --- bin/run-tests-in-docker.sh | 2 +- run-in-docker.bat | 2 +- run-in-docker.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/run-tests-in-docker.sh b/bin/run-tests-in-docker.sh index 6ce82689..c887e803 100755 --- a/bin/run-tests-in-docker.sh +++ b/bin/run-tests-in-docker.sh @@ -24,7 +24,7 @@ docker run \ --network none \ --read-only \ --mount type=bind,src="${PWD}/test/fixtures",dst=/opt/test-runner/test/fixtures \ - --mount type=tmpfs,dst=/tmp:exec \ + --mount type=tmpfs,dst=/tmp \ --volume "${PWD}/bin/run-tests.sh:/opt/test-runner/bin/run-tests.sh" \ --workdir /opt/test-runner \ --entrypoint /opt/test-runner/bin/run-tests.sh \ diff --git a/run-in-docker.bat b/run-in-docker.bat index 936cfbb9..7f449b93 100644 --- a/run-in-docker.bat +++ b/run-in-docker.bat @@ -27,5 +27,5 @@ docker run^ --read-only^ --mount type=bind,src=%cd%/%2,dst=/solution/^ --mount type=bind,src=%cd%/%3,dst=/output/^ - --mount type=tmpfs,dst=/tmp:exec^ + --mount type=tmpfs,dst=/tmp^ javascript-test-runner %1 /solution/ /output/ diff --git a/run-in-docker.sh b/run-in-docker.sh index 8322992a..ac0eea06 100755 --- a/run-in-docker.sh +++ b/run-in-docker.sh @@ -32,5 +32,5 @@ docker run \ --read-only \ --mount type=bind,src=$PWD/$2,dst=/solution/ \ --mount type=bind,src=$PWD/$3,dst=/output/ \ - --mount type=tmpfs,dst=/tmp:exec \ + --mount type=tmpfs,dst=/tmp \ javascript-test-runner $1 /solution/ /output/