Skip to content

Commit

Permalink
Remove :exec flag
Browse files Browse the repository at this point in the history
  • Loading branch information
SleeplessByte committed Aug 12, 2024
1 parent b850b54 commit 1fc134e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/run-tests-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion run-in-docker.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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/
2 changes: 1 addition & 1 deletion run-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/

0 comments on commit 1fc134e

Please sign in to comment.