From 97fa5b8532c8eac7d6b29f1d43864f417f071d53 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Thu, 12 Sep 2024 07:42:42 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB(makefile)=20a?= =?UTF-8?q?dd=20build=20frontend=20dev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit docker build frontend dev was lacking. If dependencies were updated, the change were not reflected in the frontend container. --- CHANGELOG.md | 1 + Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3820f25d..3ed62afd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ and this project adheres to ## Fixed - 🐛 Fix forcing ID when creating a document via API endpoint #234 +- 🐛 Rebuild frontend dev container from makefile #248 ## [1.3.0] - 2024-09-05 diff --git a/Makefile b/Makefile index 08dd7f14..bd4be253 100644 --- a/Makefile +++ b/Makefile @@ -92,6 +92,7 @@ bootstrap: \ # -- Docker/compose build: ## build the app-dev container @$(COMPOSE) build app-dev --no-cache + @$(COMPOSE) build frontend-dev --no-cache .PHONY: build down: ## stop and remove containers, networks, images, and volumes