Alon Peslin
08/27/2023, 1:59 PMFROM prefecthq/prefect:2.11.5-python3.8
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
ENV PYTHONPATH /app/
COPY ./ /app/
When running docker build .
I'm getting this error when trying to upgrade pip
(or to install any python package):
RuntimeError: can't start new thread
Did anyone encounter something similar and can help? thanks!!
P.S it happened after upgrading to prefect image 2.11.5, before we worked with 2.7.7 and it was running smoothly.Ofek Katriel
08/28/2023, 11:40 AMDave Chater
10/09/2023, 3:57 PMpip install --progress-bar off -r requirements.txt
Dave Chater
10/09/2023, 3:58 PM