github.com/mutagen-io/mutagen@v0.18.0-rc1/scripts/ci/docker/windows/Dockerfile (about) 1 # Set the base image. 2 FROM mcr.microsoft.com/windows/servercore:ltsc2022 3 4 # Add a user. 5 RUN net user /add george 6 7 # Add the HTTP demo server. 8 COPY httpdemo.exe c:/ 9 10 # Set the HTTP demo server as the entry point. 11 ENTRYPOINT c:/httpdemo.exe