Skip to content

Commit

Permalink
try silent installation without powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega committed Jan 15, 2024
1 parent 6981234 commit fdde975
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ RUN powershell -Command echo "Downloading Vulkan SDK..."
RUN powershell -Command Invoke-WebRequest -Uri https://sdk.lunarg.com/sdk/download/latest/windows/vulkan-sdk.exe -OutFile VulkanSDK-Installer.exe

RUN powershell -Command echo "Installing Vulkan SDK..."
RUN powershell -Command Start-Process -Wait -PassThru -FilePath .\VulkanSDK-Installer.exe -ArgumentList '--accept-licenses', '--default-answer', '--confirm-command', 'install', '--root', 'C:\VulkanSDKCustom'
# RUN powershell -Command Start-Process -Wait -PassThru -FilePath .\VulkanSDK-Installer.exe -ArgumentList '--accept-licenses', '--default-answer', '--confirm-command', 'install', '--root', 'C:\VulkanSDKCustom'
RUN .\VulkanSDK-Installer.exe --accept-licenses --default-answer --confirm-command install --root C:\VulkanSDKCustom

RUN powershell -Command echo "Removing Vulkan SDK installer..."
RUN powershell -Command Remove-Item -Force VulkanSDK-Installer.exe
Expand Down

0 comments on commit fdde975

Please sign in to comment.