fix tag on sandbox (#164)

This commit is contained in:
Robert Brennan
2024-03-25 18:24:30 -04:00
committed by GitHub
parent dc1a1e6685
commit ad83a4d869

View File

@@ -11,7 +11,7 @@ import atexit
InputType = namedtuple("InputType", ["content"])
OutputType = namedtuple("OutputType", ["content"])
CONTAINER_IMAGE = os.getenv("SANDBOX_CONTAINER_IMAGE", "opendevin/sandbox:latest")
CONTAINER_IMAGE = os.getenv("SANDBOX_CONTAINER_IMAGE", "opendevin/sandbox:v0.1")
class DockerInteractive: