Skip to content

Commit

Permalink
Merge pull request #4 from vikumarks/work-fix-sai_thrift-import-error
Browse files Browse the repository at this point in the history
Update Dockerfile.saichallenger-client to Fix "ModuleNotFoundError: No module named 'sai_thrift'"
  • Loading branch information
vikumarks authored Nov 1, 2024
2 parents 01260d4 + c6c5078 commit 09dac7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dash-pipeline/dockerfiles/Dockerfile.saichallenger-client
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ ADD SAI/rpc/saithrift-0.9.tar.gz /

# Install the python libraries
RUN cd /saithrift-0.9 && \
python3 setup.py install && \
pip3 install . && \
cd / && \
rm -rf saithrift-0.9 &&\
cd thrift-0.11.0 && \
python3 setup.py install && \
pip3 install . && \
cd / &&\
rm -rf thrift-0.11.0 && \
cd /SAI/test/ptf && \
python3 setup.py install && \
pip3 install . && \
ln -s ${DASH_PATH}/test/test-cases/scale/saic ${SAI_CHALLENGER_PATH}/dash_tests

CMD ["/usr/bin/supervisord"]

0 comments on commit 09dac7f

Please sign in to comment.