-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Installing XRT 2021.1 packages in docker container (#8474)
* Adding dockerfile to install XRT packages * Update xrt_master_2021.1.yml - adding step to copy XRT, XRM and XCR packages under Dockerfile dir - installed XRT and XRM packages in 5 docker images as per request (https://jira.xilinx.com/browse/SR-958176) * docker images steps are coming from composite workflow, passing few secrets to composite workflow
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
ARG BASE_IMAGE | ||
FROM ${BASE_IMAGE} | ||
|
||
RUN echo "Using base image: ${BASE_IMAGE}" # Debug statement | ||
|
||
ARG PACKAGE_FILE | ||
RUN echo "Using package file: ${PACKAGE_FILE}" # Debug statement | ||
|
||
|
||
COPY ${PACKAGE_FILE} /tmp/ | ||
COPY xcr_* /tmp/ | ||
COPY xrm_* /tmp/ | ||
|
||
ARG INSTALL_COMMANDS | ||
RUN eval "${INSTALL_COMMANDS}" |