blob: 7a3b20c7dba0f9e225d622386dcd8f7ce0275baf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
FROM verilator/verilator:latest
# Install python3 + pip3 for fusesoc
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive \
&& apt-get install --no-install-recommends -y \
curl \
python3 \
python3-pip \
vim \
neovim \
tmux \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install --upgrade fusesoc
WORKDIR /work
ENTRYPOINT [ "/bin/bash", "-l", "-c" ]
|