File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ RUN mkdir tutorial && \
1010
1111RUN git clone https://github.com/OpenXiangShan/XSPdb.git --depth=1 && \
1212 cd XSPdb && \
13- pip3 install -r requirements.txt
13+ make init
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ REGISTRY=' ghcr.io'
4+ IMAGE_NAME=' xs-mlvp/envbase'
5+ IMAGE_TAG=' latest'
6+
7+ # Build the base image
8+ sudo docker build \
9+ --network host \
10+ -t $REGISTRY /$IMAGE_NAME :$IMAGE_TAG \
11+ -f docker/Dockerfile \
12+ .
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # whereis this script located?
4+ PATH_TO_SCRIPT=$( dirname " $( readlink -f " $0 " ) " )
5+ ${PATH_TO_SCRIPT} /build-base.sh
6+
7+ REGISTRY=' ghcr.io'
8+ IMAGE_NAME=' xs-mlvp/envfull'
9+ IMAGE_TAG=' latest'
10+
11+ # Build the full image
12+ sudo docker build \
13+ --network host \
14+ -t $REGISTRY /$IMAGE_NAME :$IMAGE_TAG \
15+ -f docker/Dockerfile.full \
16+ .
You can’t perform that action at this time.
0 commit comments