11 lines
390 B
Docker
11 lines
390 B
Docker
|
|
||
|
FROM debian10.system
|
||
|
|
||
|
COPY root/socInstaller.py /root/socInstaller.py
|
||
|
RUN mkdir -p coriolis-2.x/src \
|
||
|
&& git clone https://github.com/m-labs/nmigen.git \
|
||
|
&& cd nmigen \
|
||
|
&& python3 setup.py develop \
|
||
|
&& /root/socInstaller.py --docker --profile=Debian10 --do-alliance --do-coriolis --benchs
|
||
|
|