Skip to content
Snippets Groups Projects
Commit 5abd3dde authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Docker] install XRT deps

parent 30041604
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,12 @@ RUN apt-get install -y verilator zsh
RUN apt-get -y install sshpass wget unzip
RUN echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
# install XRT dependencies
RUN wget https://raw.githubusercontent.com/Xilinx/XRT/master/src/runtime_src/tools/scripts/xrtdeps.sh
RUN apt-get update
RUN bash xrtdeps.sh
RUN rm xrtdeps.sh
# cloning dependency repos
# Brevitas
RUN git clone https://github.com/Xilinx/brevitas.git /workspace/brevitas
......
......@@ -46,6 +46,12 @@ RUN apt-get install -y verilator nano zsh rsync
RUN apt-get -y install sshpass wget unzip
RUN echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
# install XRT dependencies
RUN wget https://raw.githubusercontent.com/Xilinx/XRT/master/src/runtime_src/tools/scripts/xrtdeps.sh
RUN apt-get update
RUN bash xrtdeps.sh
RUN rm xrtdeps.sh
COPY requirements.txt .
RUN pip install -r requirements.txt
RUN rm requirements.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment