We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c6268 commit 9b759abCopy full SHA for 9b759ab
windows-arc-runner/Dockerfile
@@ -75,6 +75,12 @@ RUN .\vswhere.exe
75
RUN vswhere
76
# Set the entrypoint to cmd.exe so you can run vswhere
77
78
+# Install dvc through release installer
79
+RUN Invoke-WebRequest -Uri https://dvc.org/download/win/dvc-3.62.0 -OutFile dvc.exe; `
80
+ Start-Process -FilePath .\dvc.exe -ArgumentList '/SP- /NORESTART /SUPPRESSMSGBOXES /VERYSILENT' -NoNewWindow -Wait; `
81
+ Remove-Item dvc.exe
82
+RUN setx /M PATH $($Env:PATH + ';C:\Program Files (x86)\DVC (Data Version Control)')
83
+
84
# Restore the default Windows shell for correct batch processing.
85
SHELL ["cmd", "/S", "/C"]
86
0 commit comments