chore: update the file

This commit is contained in:
x-tools-author 2025-04-26 09:44:18 +08:00
parent 004bdb79d5
commit 91d42d50b6

View File

@ -4,6 +4,18 @@
# Copy Qt to Container
COPY Qt C:/Qt
#---------------------------------------------------------------------------------------------------
# Install PowerShell
ENV POWERSHELL_VERSION=7.5.1
ENV POWERSHELL_URL=https://github.com/PowerShell/PowerShell/releases/download/v${POWERSHELL_VERSION}/PowerShell-${POWERSHELL_VERSION}-win-x64.zip
ENV POWERSHELL_DIR=C:/PowerShell
# Download and install PowerShell
RUN curl.exe -L -o C:\\powershell.zip %POWERSHELL_URL% && \
tar.exe -xf C:\\powershell.zip -C C:\\ && \
del C:\\powershell.zip
ENV PATH="%POWERSHELL_DIR%;%PATH%"
#---------------------------------------------------------------------------------------------------
# CMake ENV
ENV CMAKE_VERSION=3.30.8