From 88a3a413333e7717355289bb1ae15643b888220b Mon Sep 17 00:00:00 2001 From: Kairo Araujo Date: Thu, 14 Dec 2023 20:12:09 +0100 Subject: [PATCH] fix: unecessary build while running `make run-dev` (#124) It will build the container using the `compose-dev.yml` by default. Signed-off-by: Kairo de Araujo --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index e221f0e9..c48646e5 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,6 @@ all: help run-dev: ## Run the dev server @echo "Running dev server. It will refresh automatically when you change code." - @docker build -t archivista:dev . @docker compose -f compose-dev.yml up --remove-orphans