Browse code

Windows: Remove hard coded base image

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2016/09/23 01:51:55
Showing 1 changed files
... ...
@@ -830,7 +830,7 @@ RUN [ $(cat "/test dir/test_file5") = 'test5' ]
830 830
 RUN [ $(cat "/test dir/test_file6") = 'test6' ]`
831 831
 
832 832
 	if daemonPlatform == "windows" {
833
-		dockerfile = `FROM windowsservercore
833
+		dockerfile = `FROM ` + WindowsBaseImage + `
834 834
 RUN mkdir "C:/test dir"
835 835
 RUN mkdir "C:/test_dir"
836 836
 COPY [ "test file1", "/test_file1" ]