We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba5dd24 commit f19c407Copy full SHA for f19c407
docker/Dockerfile
@@ -0,0 +1,13 @@
1
+FROM ubuntu:20.04
2
+ENV DEBIAN_FRONTEND=noninteractive
3
+RUN apt update && apt upgrade -y
4
+RUN apt install build-essential -y
5
+RUN apt install git -y
6
+RUN apt install python3 python3-pip -y
7
+RUN apt install iverilog verilator gtkwave -y
8
+RUN pip3 install -U pip
9
+RUN pip3 install pytest pytest-pythonpath
10
+RUN mkdir /home/veriloggen/
11
+WORKDIR "/home/veriloggen"
12
+RUN git clone https://github.com/PyHDI/veriloggen.git
13
+RUN cd veriloggen && python3 setup.py install && cd ../
0 commit comments