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 8638cf3 commit 5db1f89Copy full SHA for 5db1f89
windowsservercore-ltsc2025-qt6.6-64bit/Dockerfile
@@ -209,6 +209,12 @@ RUN curl -o "C:/tmp.exe" -L "%INNOSETUP_URL%" \
209
&& setx PATH "%PATH%;C:\innosetup" \
210
&& del C:\tmp.exe
211
212
+# Install AzureSignTool for signing official releases
213
+ARG AZURESIGNTOOL_URL="https://github.com/vcsjones/AzureSignTool/releases/download/v6.0.1/AzureSignTool-x64.exe"
214
+RUN mkdir C:\ast \
215
+ && curl -o "C:/ast/AzureSignTool.exe" -L "%AZURESIGNTOOL_URL%" \
216
+ && setx PATH "%PATH%;C:\ast"
217
+
218
# Pre-install a Python version
219
RUN uv python install 3.13
220
0 commit comments