Docker build stalls
Issue: When building a docker container from a Dockerfile, commands like
RUN pip install <package>
time out and the build fails. At the same time, commands likeRUN apt update
andRUN git clone <repository>
work.Workaround:
Add
--timeout=10
to pip install.