13 lines
317 B
Docker
13 lines
317 B
Docker
FROM ghcr.io/xs-mlvp/envbase:latest
|
|
|
|
USER user
|
|
WORKDIR /workspace
|
|
|
|
RUN mkdir tutorial && \
|
|
cd tutorial && \
|
|
pip3 install pytoffee && \
|
|
git clone https://github.com/SFangYy/tutorial_code.git --depth=1
|
|
|
|
RUN git clone https://github.com/OpenXiangShan/XSPdb.git --depth=1 && \
|
|
cd XSPdb && \
|
|
make init |