fix: Make docker pull latest images when building

This will help with instances where the image was cached already.
This commit is contained in:
Gerald Pinder 2024-05-12 12:03:10 -04:00
parent f7904e4bde
commit 4374b5f941

View file

@ -147,6 +147,7 @@ impl BuildDriver for DockerDriver {
command
.arg("buildx")
.arg("build")
.arg("--pull")
.arg("-f")
.arg(CONTAINER_FILE);