11 lines
392 B
Docker
11 lines
392 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-yosys --do-alliance --do-coriolis
|
|
|