From 478d981bdac635b2ccfc0a7de34f9caee1b3063f Mon Sep 17 00:00:00 2001 From: Derk-Jan Karrenbeld Date: Tue, 13 Aug 2024 15:47:20 +0200 Subject: [PATCH] Remove option :exec not supported by --mount --- bin/run-tests-in-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run-tests-in-docker.sh b/bin/run-tests-in-docker.sh index 6ce8268..c887e80 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 \