File tree Expand file tree Collapse file tree 3 files changed +4
-15
lines changed
Expand file tree Collapse file tree 3 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ ENV PATH=/root/.cargo/bin:${PATH}
2727RUN apt-get install -y --no-install-recommends clang
2828
2929# Install python
30- RUN apt-get install -y --no-install-recommends python3.10 libpython3.10 python3-distutils python3-pip
30+ RUN apt-get install -y --no-install-recommends python3.8 libpython3.8 python3-distutils python3-pip
3131RUN python3 -m pip install termgraph \
3232 && python3 -m pip install pandas \
3333 && python3 -m pip install termcolor \
Original file line number Diff line number Diff line change @@ -12,19 +12,8 @@ docker tag ${IMAGE_NAME} ${IMAGE_NAME}_${ARCH}_${KERNEL}:latest
1212docker tag ${IMAGE_NAME} ${IMAGE_NAME} _${ARCH} _${KERNEL} :${IMAGE_VER}
1313
1414echo " "
15- echo " The entry point is a wrapper to the python script 'wasmscore.py'"
15+ echo " The entry point is a wrapper to the python script 'wasmscore.py'."
16+ echo " "
1617echo " To run from this local build use command (for a list of more options use --help):"
1718echo " > docker run -ti ${IMAGE_NAME} <options>"
1819echo " "
19- echo " To stop and rm all ${IMAGE_NAME} containers:"
20- echo " > docker rm \$ (docker stop \$ (docker ps -a -q --filter ancestor=${IMAGE_NAME} :latest --format=" {{.ID}}" ))"
21- echo " "
22- echo " For a detached setup that allows for copying files to the image or"
23- echo " entering the container, use the following commands:"
24- echo " > docker run --entrypoint=/bin/bash -ti -d ${IMAGE_NAME} "
25- echo " > wasmscore_container_id=\$ (docker ps | grep -m 1 ${IMAGE_NAME} | awk '{ print \$ 1 }')"
26- echo " "
27- echo " > docker cp <file> \$ {wasmscore_container_id}:"
28- echo " or"
29- echo " > docker exec -ti \$ {wasmscore_container_id}" /bin/bash
30- echo " "
Original file line number Diff line number Diff line change 11#! /bin/bash
22cd sightglass
3- python3.10 ./wasmscore.py $@
3+ python3 ./wasmscore.py $@
44cd - > /dev/null
You can’t perform that action at this time.
0 commit comments