Merge pull request #26827 from Microsoft/jjh/hardcodingbaseimage

Windows: Remove hard coded base image in TestBuildCopyFileWithWhitespace
Upstream-commit: d6bb37060256c94158c83dc9216f08fcd4127a83
Component: engine
This commit is contained in:
Brian Goff
2016-09-22 16:29:38 -04:00
committed by GitHub

View File

@ -830,7 +830,7 @@ RUN [ $(cat "/test dir/test_file5") = 'test5' ]
RUN [ $(cat "/test dir/test_file6") = 'test6' ]`
if daemonPlatform == "windows" {
dockerfile = `FROM windowsservercore
dockerfile = `FROM ` + WindowsBaseImage + `
RUN mkdir "C:/test dir"
RUN mkdir "C:/test_dir"
COPY [ "test file1", "/test_file1" ]