Skip to content

Commit

Permalink
Fix python sandbox container not found
Browse files Browse the repository at this point in the history
  • Loading branch information
solomonng2001 committed Nov 7, 2024
1 parent 3396c29 commit 1bde600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/execution-service/execution/python/python.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func RunPythonCode(code string, input string) (string, string, error) {
cmd := exec.Command(
"docker", "run", "--rm",
"-i", // allows for standard input to be passed in
"python-sandbox",
"apps-python-sandbox",
"python", "-c", code,
)

Expand Down

0 comments on commit 1bde600

Please sign in to comment.