Skip to content
Snippets Groups Projects
Commit cb1eacb6 authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

allow pip dependency conflicts (temporarily)

parent 21b9378c
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,9 @@ RUN ln -s /mnt/user/shared /opt/app-root/src/shared
ENV HOME=/opt/app-root/src/
# temporarily downgrade pip to avoid failing build because of dependency conflicts (TODO: fix)
RUN pip install pip==20.0.2
# install pip packages
COPY base/requirements.txt /tmp
RUN pip install --no-cache-dir -r /tmp/requirements.txt
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment