diff --git a/build/ci.go b/build/ci.go
index ca87913eb00ffdb79edd9c6bd317229ac9c689ec..d7d2ce72e06c70b97dd2410d7de5163f30159d8e 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -492,7 +492,7 @@ func doDocker(cmdline []string) {
 	case env.Branch == "master":
 		tags = []string{"latest"}
 	case strings.HasPrefix(env.Tag, "v1."):
-		tags = []string{"stable", fmt.Sprintf("release-1.%d", params.VersionMinor), params.Version}
+		tags = []string{"stable", fmt.Sprintf("release-1.%d", params.VersionMinor), "v" + params.Version}
 	}
 	// If architecture specific image builds are requested, build and push them
 	if *image {