From 6f8c6847ab3db8e5aaef5bb2af867e8f41e596d3 Mon Sep 17 00:00:00 2001 From: Alejandro Villar Date: Thu, 8 Feb 2024 09:59:49 +0100 Subject: [PATCH] Apply rdflib fixes in docker image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d41860c..32a9d33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,9 @@ RUN apk update && \ RUN /venv/bin/python -m pip install -r /requirements.txt +# Apply rdflib fixes +RUN /venv/bin/python -m pip install git+https://github.com/avillar/rdflib.git@6.x + ENV PYTHONPATH /src/ ENV PYTHONUNBUFFERED 1 ENV NODE_PATH=/src/node_modules