From ebfd957cdb89b3228b8925ea423aa5c49be1cebb Mon Sep 17 00:00:00 2001 From: KemoNine Date: Thu, 25 Apr 2024 10:31:32 -0400 Subject: [PATCH] disable caching of container build, add pull to build to ensure using latest base image --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 1a811ce..720fafd 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ #!/bin/bash git pull -sudo docker build -t containerized-monitoring:latest -f Dockerfile . +sudo docker build --pull --no-cache -t containerized-monitoring:latest -f Dockerfile .