diff --git a/install/common/build-image.py b/install/common/build-image.py index 3f098c35a..08fc01a2c 100644 --- a/install/common/build-image.py +++ b/install/common/build-image.py @@ -76,7 +76,6 @@ def export_container_pip_dependencies(): ["poetry", "export", "--only", "container"], universal_newlines=True ) # XXX Export container dependencies and exclude pymupdfb since it is not needed in container - # in the container the --require-hashes the fact that pymupdfb is not needed req_txt_pymupdfb_stripped = container_requirements_txt.split("pymupdfb")[0] with open(Path(BUILD_CONTEXT) / REQUIREMENTS_TXT, "w") as f: f.write(req_txt_pymupdfb_stripped)