diff --git a/ee/api/Dockerfile b/ee/api/Dockerfile index f15d68569..4fa70ed1f 100644 --- a/ee/api/Dockerfile +++ b/ee/api/Dockerfile @@ -14,7 +14,7 @@ WORKDIR /work COPY requirements.txt ./requirements.txt RUN pip install --no-cache-dir --upgrade -r requirements.txt # This code is used to solve 'lxml & xmlsec libxml2 library version mismatch' error -RUN pip uninstall -y lxml && pip install lxml +RUN pip uninstall -y lxml && pip install --no-binary lxml lxml --force-reinstall COPY . . RUN mv env.default .env