Closed jexp closed 1 month ago
@ashwinzyx can you please take a look once you're back?
I faced the same issue when building the Docker container on Mac and I fixed it adding 'git' to the list of system dependencies in the Dockerfile
:
# Install required system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
libjpeg-dev \
libmagic-dev \
zlib1g-dev \
libopenjp2-7-dev \
libpng-dev \
libpoppler-cpp-dev \
pkg-config \
gcc \
libqpdf-dev \
libgl1-mesa-glx \
libglib2.0-0 \
git \
&& rm -rf /var/lib/apt/lists/*
Also added the GIT_PYTHON_REFRESH=quiet
flag in the docker-compose.yml
added git to Docker dependencies in Release 0.0.21
I get this python git issue when running ragbuilder with
docker compose up
The ragbuilder image didn't exited.
I fixed it by using
GIT_PYTHON_REFRESH=quiet
in the env file.Perhaps git is missing from the image?