Skip to content

Commit

Permalink
Avoid use of cache directory with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
jakoch committed Dec 25, 2024
1 parent 29c672d commit ae49d36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/debian/bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ RUN echo "IKOS" && \
python3 -m build --no-isolation --outdir "/opt/ikos/dist/" --wheel "analyzer/python" && \
find /opt/ikos/dist -name "*.whl" -exec ls -la {} + && \
echo "Install Python Module" && \
python3 -m pip install "/opt/ikos/dist/ikos-3.4-py3-none-any.whl" --target "/opt/ikos/python-module" && \
python3 -m pip install --no-cache-dir "/opt/ikos/dist/ikos-3.4-py3-none-any.whl" --target "/opt/ikos/python-module" && \
export PYTHONPATH="/opt/ikos/python-module" && \
echo "Test" && \
#ls -lahr /opt/ikos/bin && \
Expand Down Expand Up @@ -420,7 +420,7 @@ RUN apt-get update && apt-get install --no-install-recommends --assume-yes \
apt-get clean autoclean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
# Install IKOS Python module
python3 -m pip install "/opt/ikos/dist/ikos-3.4-py3-none-any.whl" --target "/opt/ikos/python-module"
python3 -m pip install --no-cache-dir "/opt/ikos/dist/ikos-3.4-py3-none-any.whl" --target "/opt/ikos/python-module"
# Test
#ikos --version

Expand Down

0 comments on commit ae49d36

Please sign in to comment.