From 6879acdfe745453d336c3d8b9c597ab256d52db2 Mon Sep 17 00:00:00 2001 From: tobitege Date: Fri, 21 Jun 2024 11:27:56 +0200 Subject: [PATCH] fix: Makefile shall pull sandbox:main, not :latest (#2561) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c04c7ff78..d33e8a4b55 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL=/bin/bash # Makefile for OpenDevin project # Variables -DOCKER_IMAGE = ghcr.io/opendevin/sandbox +DOCKER_IMAGE = ghcr.io/opendevin/sandbox:main BACKEND_PORT = 3000 BACKEND_HOST = "127.0.0.1:$(BACKEND_PORT)" FRONTEND_PORT = 3001