disable caching of container build, add pull to build to ensure using latest base image

This commit is contained in:
KemoNine 2024-04-25 10:31:32 -04:00
parent 9b10b4b730
commit ebfd957cdb
1 changed files with 1 additions and 1 deletions

View File

@ -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 .