mirror of
https://github.com/x-tools-author/x-tools.git
synced 2025-09-15 15:28:40 +08:00
chore: update the file
This commit is contained in:
parent
004bdb79d5
commit
91d42d50b6
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user