From 94804d7cba94eac691c4495f58a46faf7bf6d3eb Mon Sep 17 00:00:00 2001 From: Roger Far Date: Sun, 6 Jun 2021 16:15:34 -0600 Subject: [PATCH] Add no cache to the docker-publish.ps1 file to make sure we're building clean images. --- docker-publish.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-publish.ps1 b/docker-publish.ps1 index 3706da9..c49e274 100755 --- a/docker-publish.ps1 +++ b/docker-publish.ps1 @@ -39,7 +39,7 @@ param( $imageName = "$($DockerAccount)/rdtclient" -$dockerArgs = @( "buildx", "build", "--push", "--platform", $Platforms, "--tag", "$($imageName):latest", "." ) +$dockerArgs = @( "buildx", "build", "--no-cache", "--push", "--platform", $Platforms, "--tag", "$($imageName):latest", "." ) if ([string]::IsNullOrEmpty($Version)) { $Version = (Get-Content "package.json" | ConvertFrom-Json).version