Skip to content

Commit 6cda9bb

Browse files
ElanHassonclaude
andcommitted
fix: Use absolute path in Docker ENTRYPOINT to support workdir changes
The Docker image was failing when Claude/Cursor changed the working directory with -w flag. Using absolute path /app/InfinityFlow.CSharp.Eval.dll ensures the application can be found regardless of working directory. Fixes the "dotnet-InfinityFlow.CSharp.Eval.dll does not exist" error. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 09fb1c2 commit 6cda9bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ ENV NUGET_PACKAGES=/tmp/csharp-mcp-packages
5151
ENV DOTNET_RUNNING_IN_CONTAINER=true
5252

5353
# The MCP server uses stdio for communication
54-
ENTRYPOINT ["dotnet", "InfinityFlow.CSharp.Eval.dll"]
54+
ENTRYPOINT ["dotnet", "/app/InfinityFlow.CSharp.Eval.dll"]

0 commit comments

Comments
 (0)