Skip to content

Commit

Permalink
always go through full build process for running local containers
Browse files Browse the repository at this point in the history
  • Loading branch information
Atomsoldat committed Jan 14, 2025
1 parent 467d035 commit ac5232c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions localcontainer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac5232c

Please sign in to comment.