From ac5232c2f0a12ff16ae9a7d0378375e001923d46 Mon Sep 17 00:00:00 2001 From: Leon Welchert Date: Tue, 14 Jan 2025 08:38:02 +0100 Subject: [PATCH] always go through full build process for running local containers --- localcontainer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/localcontainer.sh b/localcontainer.sh index 14d50f3..7f0337d 100755 --- a/localcontainer.sh +++ b/localcontainer.sh @@ -10,9 +10,9 @@ function cleanup() { # nuke container when finished trap cleanup EXIT -#hugo --minify +hugo --minify -docker build -t lichturm-website-local-build:debug . +docker build --no-cache -t lichturm-website-local-build:debug . docker run --publish 8080:80 --detach --rm --name lichturm-website-debug-container lichturm-website-local-build:debug firefox --private-window http://localhost:8080