Skip to content

Commit ca994ac

Browse files
authored
Merge pull request #162 from WolframResearch/bugfix/fix-docker-test-step
Bugfix: Override ENTRYPOINT in Docker image test step
2 parents 71f088d + 51419de commit ca994ac

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/Docker.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,5 @@ jobs:
9292
echo "Image pulled successfully"
9393
# Basic sanity check: verify that the container can start.
9494
# Note: Full runtime test requires Wolfram Engine license.
95-
docker run --rm --env WOLFRAMSCRIPT_ENTITLEMENTID "$IMAGE_TAG" wolframscript -code '$Version'
95+
# Override ENTRYPOINT since the default starts the MCP server on stdin.
96+
docker run --rm --entrypoint wolframscript --env WOLFRAMSCRIPT_ENTITLEMENTID "$IMAGE_TAG" -code '$Version'

0 commit comments

Comments
 (0)