From 4af567771a6f0d4ee8068f4ff9d3a8fb82c49447 Mon Sep 17 00:00:00 2001 From: nokotan Date: Mon, 17 Apr 2023 13:55:59 +0900 Subject: [PATCH] fix run command --- Container/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Container/Dockerfile b/Container/Dockerfile index f82a342..ff51c45 100644 --- a/Container/Dockerfile +++ b/Container/Dockerfile @@ -8,11 +8,10 @@ SHELL ["cmd", "/S", "/C"] COPY Emscripten.Build.Definition.vsix . RUN ` - set VSCMD_DEBUG=1 ` - && ""%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat"" ` + ""%ProgramFiles%\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\VsDevCmd.bat" ` && VSIXInstaller /quiet /admin Emscripten.Build.Definition.vsix ` && PowerShell -NoLogo -ExecutionPolicy ByPass Wait-Process -Name "VSIXInstaller" ` - && del /q Emscripten.vsix + && del /q Emscripten.vsix" # Define the entry point for the docker container. # This entry point starts the developer command prompt and launches the PowerShell shell.