diff --git a/apps/execution-service/execution/python/python.go b/apps/execution-service/execution/python/python.go index 726bc29d8b..9698c345b9 100644 --- a/apps/execution-service/execution/python/python.go +++ b/apps/execution-service/execution/python/python.go @@ -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 - "apps-python-sandbox", + "apps_python-sandbox", "python", "-c", code, )