File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ RUN apt-get install -y --no-install-recommends \
3535 python3-tk \
3636 python3-venv \
3737 python3-pip && \
38- pip3 install --no-cache-dir --upgrade setuptools && \
38+ pip3 install --break-system-packages -- no-cache-dir --upgrade setuptools && \
3939 echo "alias python='python3'" >> /root/.bash_aliases && \
4040 echo "alias pip='pip3'" >> /root/.bash_aliases && \
4141 cd /usr/local/bin && ln -s /usr/bin/python3 python && \
4242 cd /usr/local/bin && ln -s /usr/bin/pip3 pip && \
43- pip install virtualenv abed wheel
43+ pip install --break-system-packages virtualenv abed wheel
4444
4545# Set the default shell to bash
4646RUN mv /bin/sh /bin/sh.old && cp /bin/bash /bin/sh
@@ -58,7 +58,7 @@ RUN git clone --recurse-submodules https://github.com/alan-turing-institute/TCPD
5858RUN mkdir -p /TCPDBench/datasets && cp TCPD/export/*.json /TCPDBench/datasets/
5959
6060# Install Python dependencies
61- RUN pip install -r /TCPDBench/analysis/requirements.txt
61+ RUN pip install --break-system-packages - r /TCPDBench/analysis/requirements.txt
6262
6363# Install R dependencies
6464RUN Rscript -e "install.packages(c('argparse', 'exactRankTests'))"
You can’t perform that action at this time.
0 commit comments