File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ RUN set -x \
1919 python3-dev \
2020 python3-pip \
2121 && rm -rf /var/lib/apt/lists/* \
22- && pip3 install --no-cache-dir --upgrade pip
22+ && pip3 install --break-system-packages -- no-cache-dir --upgrade pip
2323
2424RUN set -x \
2525 && echo "Installing jupyter kernel..." \
26- && pip3 install --no-cache-dir ipython_genutils ipykernel \
26+ && pip3 install --break-system-packages -- no-cache-dir ipython_genutils ipykernel \
2727 && python3 -m ipykernel install
2828
2929{% - if os .path .isfile (os .path .join (appyter_path , 'deps.txt' )) %}
@@ -70,15 +70,15 @@ RUN set -x \
7070ADD requirements.txt /app/requirements.txt
7171RUN set -x \
7272 && echo "Installing python dependencies from requirements.txt..." \
73- && pip3 install --no-cache-dir -r /app/requirements.txt \
73+ && pip3 install --break-system-packages -- no-cache-dir -r /app/requirements.txt \
7474 && rm /app/requirements.txt
7575
7676{% - endif %}
7777
7878ARG appyter_version=appyter[production]@git+https://github.com/Maayanlab/appyter
7979RUN set -x \
8080 && echo "Installing appyter..." \
81- && pip3 install --no-cache-dir --upgrade ${appyter_version}
81+ && pip3 install --break-system-packages -- no-cache-dir --upgrade ${appyter_version}
8282
8383# BEGIN CATALOG
8484COPY catalog_helper.py /bin/appyter-catalog-helper
You can’t perform that action at this time.
0 commit comments