diff --git a/docs/windows.md b/docs/windows.md index 14cc882ee17d..9f8e69a9b85e 100644 --- a/docs/windows.md +++ b/docs/windows.md @@ -89,6 +89,7 @@ Now that everything is setup, let's build a [simple _hello world_ image](https:/ ```powershell Set-Content Dockerfile @" FROM mcr.microsoft.com/windows/nanoserver:ltsc2022 + USER ContainerAdministrator COPY hello.txt C:/ RUN echo "Goodbye!" >> hello.txt CMD ["cmd", "/C", "type C:\\hello.txt"]