Add no cache to the docker-publish.ps1 file to make sure we're building clean images.
This commit is contained in:
parent
0e2cb36080
commit
94804d7cba
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue