Skip to content

Commit

Permalink
Force base image pull
Browse files Browse the repository at this point in the history
  • Loading branch information
lucor committed Apr 9, 2021
1 parent 1eac613 commit c1f971a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/command/darwin_image.go
Expand Up @@ -85,7 +85,7 @@ func (cmd *DarwinImage) Run() error {
log.Info("[i] Building docker image...")

// run the command from the host
dockerCmd := exec.Command("docker", "build", "-t", darwinImage, ".")
dockerCmd := exec.Command("docker", "build", "--pull", "-t", darwinImage, ".")
dockerCmd.Dir = workDir
dockerCmd.Stdout = os.Stdout
dockerCmd.Stderr = os.Stderr
Expand Down

0 comments on commit c1f971a

Please sign in to comment.