forked from ARM-software/CMSIS_5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docker: Upgrade all Python packages as required.
- Loading branch information
1 parent
d12f5c2
commit e54ebc4
Showing
2 changed files
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,8 @@ RUN chmod +x /usr/local/bin/PackChk | |
|
||
# install Python requirements | ||
COPY requirements.txt ${INSTALLER_PATH}/ | ||
RUN python3 -m pip install --no-cache-dir -r ${INSTALLER_PATH}/requirements.txt | ||
RUN python3 -m pip install -U --no-cache-dir pip && \ | ||
python3 -m pip install -U --no-cache-dir -r ${INSTALLER_PATH}/requirements.txt | ||
|
||
# install buildtools | ||
RUN python3 -m pip install --no-cache-dir -r ${INSTALLER_PATH}/buildtools/requirements.txt | ||
|
@@ -93,10 +94,6 @@ COPY rtebuild /home/jenkins/.rtebuild | |
COPY rtebuild /root/.rtebuild | ||
ENV PATH=${PATH}:${TOOLS_PATH}/buildtools | ||
|
||
# install python-matrix-runner | ||
# hadolint disable=DL3013 | ||
RUN python3 -m pip install ${INSTALLER_PATH}/python-matrix-runner | ||
|
||
# set ARMLMD_LICENSE_FILE for ARM compilers | ||
ENV ARMLMD_LICENSE_FILE="[email protected]:[email protected]:[email protected]:[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters