We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 042b224 commit e06f13aCopy full SHA for e06f13a
1 file changed
docker/Dockerfile.full
@@ -3,12 +3,19 @@ FROM ghcr.io/xs-mlvp/envbase:latest
3
USER user
4
WORKDIR /workspace
5
6
-RUN pip3 install pytoffee && \
+
7
+RUN echo 'export PATH="$HOME/.usr/local/bin:$PATH"' >> ~/.bashrc
8
9
+RUN pip3 install toffee-test filelock && \
10
git clone https://github.com/XS-MLVP/tutorial-records.git --depth=1 && \
11
mv tutorial-records/tutorials/code-samples . && \
12
cd .. && \
13
rm -rf tutorial-records
-
14
15
+RUN apt-get update && apt-get install -y --no-install-recommends \
16
+ lcov && \
17
+ apt-get clean && \
18
+ rm -rf /var/lib/apt/lists/*
19
20
RUN cd code-samples && \
21
git clone https://github.com/OpenXiangShan/XSPdb.git --depth=1 xspdb && \
0 commit comments