Skip to content

Commit f19c407

Browse files
committed
New Dockerfile
1 parent ba5dd24 commit f19c407

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

docker/Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)