@@ -411,17 +411,22 @@ Task("Docker-Build")
411
411
{
412
412
if ( parameters . IsRunningOnWindows )
413
413
{
414
- DockerBuild ( "windows" , "nano" , "netcoreapp2.1" , parameters ) ;
415
414
DockerBuild ( "windows" , "windowsservercore" , "net472" , parameters ) ;
415
+
416
+ DockerBuild ( "windows" , "nano" , "netcoreapp2.1" , parameters ) ;
417
+
418
+ DockerBuild ( "windows" , "nano" , "netcoreapp2.2" , parameters ) ;
416
419
}
417
420
else if ( parameters . IsRunningOnLinux )
418
421
{
419
- DockerBuild ( "linux" , "debian" , "net472" , parameters ) ;
420
- DockerBuild ( "linux" , "debian" , "netcoreapp2.1" , parameters ) ;
421
- DockerBuild ( "linux" , "centos7" , "netcoreapp2.1" , parameters ) ;
422
+ DockerBuild ( "linux" , "debian" , "net472" , parameters ) ;
423
+
424
+ DockerBuild ( "linux" , "debian" , "netcoreapp2.1" , parameters ) ;
425
+ DockerBuild ( "linux" , "centos7" , "netcoreapp2.1" , parameters ) ;
422
426
DockerBuild ( "linux" , "fedora27" , "netcoreapp2.1" , parameters ) ;
423
- DockerBuild ( "linux" , "debian" , "netcoreapp2.2" , parameters ) ;
424
- DockerBuild ( "linux" , "centos7" , "netcoreapp2.2" , parameters ) ;
427
+
428
+ DockerBuild ( "linux" , "debian" , "netcoreapp2.2" , parameters ) ;
429
+ DockerBuild ( "linux" , "centos7" , "netcoreapp2.2" , parameters ) ;
425
430
DockerBuild ( "linux" , "fedora27" , "netcoreapp2.2" , parameters ) ;
426
431
}
427
432
} ) ;
0 commit comments