Skip to content
Snippets Groups Projects
Commit d050f4b5 authored by Jakob Roth's avatar Jakob Roth
Browse files

pip install with --break-system-packages in Dockerfile

parent 0956f07b
No related branches found
No related tags found
1 merge request!44Fix pipeline
Pipeline #174090 failed
......@@ -6,14 +6,14 @@ RUN apt-get update -qq && apt-get install -qq git
# Actual dependencies
RUN apt-get update -qq && apt-get install -qq python3-pip
RUN pip3 install pybind11
RUN pip3 install --break-system-packages pybind11
# Optional dependencies
RUN pip3 install astropy
RUN pip3 install --break-system-packages astropy
RUN apt-get install -qq python3-mpi4py
# Testing dependencies
RUN apt-get install -qq python3-pytest-cov
# Documentation dependencies
RUN pip3 install sphinx pydata-sphinx-theme
RUN pip3 install --break-system-packages sphinx pydata-sphinx-theme
# Create user (openmpi does not like to be run as root)
RUN useradd -ms /bin/bash testinguser
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment