From 1d1180792013afd6c29d26173b6d2e843ef69ca4 Mon Sep 17 00:00:00 2001 From: matta Date: Mon, 11 Nov 2024 12:33:42 -0300 Subject: [PATCH] Removing latest option in makefile --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Makefile b/Makefile index f9d6312..679fee6 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,6 @@ help: @echo " build Build the Docker image with the software versions described in the .env file" @echo " rebuild Forces build, even if a previous image exists. Won't delete previous images" @echo " release Build the Docker image with the software versions described in the .env file, but from a specific release of this repo" - @echo " latest Build the Docker image with the latest version for each tool" @echo " exec Run an interactive shell inside the container" @echo " clean Remove Docke image $(IMAGE_NAME) and wipe cache (CAREFUL)" @echo "" @@ -31,7 +30,6 @@ help: @echo " make build" @echo " make rebuild" @echo " make release" - @echo " make latest" @echo " make exec" @echo " make clean" @echo "" @@ -57,9 +55,6 @@ release: @git checkout - # TODO: Check this. -latest: - @$(DOCKER_BUILD_CMD) $(foreach VAR,$(shell sed 's/=.*//' .env),--build-arg $(VAR)=latest) -t $(IMAGE_NAME):latest . - exec: build @echo "Running interactive shell inside the $(IMAGE_NAME) container..." @docker run --hostname trg --rm -it -v $(PWD):/workdir $(IMAGE_NAME):latest /bin/zsh @@ -68,4 +63,4 @@ clean: @echo "Removing Docker image with the name $(IMAGE_NAME)..." @docker rmi -f $(IMAGE_NAME) && docker builder prune -f -.PHONY: help build rebuild release latest exec clean \ No newline at end of file +.PHONY: help build rebuild release exec clean