diff --git a/opendevin/sandbox/Makefile b/opendevin/sandbox/Makefile index dc13649dc9db..e5b0a2d487c7 100644 --- a/opendevin/sandbox/Makefile +++ b/opendevin/sandbox/Makefile @@ -1,7 +1,7 @@ DOCKER_BUILD_REGISTRY=ghcr.io DOCKER_BUILD_ORG=opendevin DOCKER_BUILD_REPO=sandbox -DOCKER_BUILD_TAG=v0.1.1 +DOCKER_BUILD_TAG=v0.2 FULL_IMAGE=$(DOCKER_BUILD_REGISTRY)/$(DOCKER_BUILD_ORG)/$(DOCKER_BUILD_REPO):$(DOCKER_BUILD_TAG) LATEST_FULL_IMAGE=$(DOCKER_BUILD_REGISTRY)/$(DOCKER_BUILD_ORG)/$(DOCKER_BUILD_REPO):latest @@ -25,7 +25,7 @@ test: # cross platform build, you may need to manually stop the buildx(buildkit) container all: docker buildx build --platform linux/amd64,linux/arm64 \ - -t ${FULL_IMAGE} -t ${LATEST_FULL_IMAGE} -t ${MINOR_FULL_IMAGE}--push -f Dockerfile . + -t ${FULL_IMAGE} -t ${LATEST_FULL_IMAGE} -t ${MINOR_FULL_IMAGE} --push -f Dockerfile . get-full-image: @echo ${FULL_IMAGE}