summary refs log tree commit diff
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2022-08-17 17:51:38 +0100
committerOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2022-08-17 17:51:38 +0100
commit1092cb79a9a36359fabf3ad4844ccc29941a5ff3 (patch)
tree8746f84468e2510f8ac966293708c735684ab6d2
parentCopy requirements.txt to the final image so we can use it to debug problems (diff)
downloadsynapse-1092cb79a9a36359fabf3ad4844ccc29941a5ff3.tar.xz
Use poetry export --verbose
-rw-r--r--docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile

index c5fc8ec317..fbf094f302 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile
@@ -77,7 +77,7 @@ ARG TEST_ONLY_IGNORE_POETRY_LOCKFILE # Otherwise, just create an empty requirements file so that the Dockerfile can # proceed. RUN if [ -z "$TEST_ONLY_IGNORE_POETRY_LOCKFILE" ]; then \ - /root/.local/bin/poetry export --extras all -o /synapse/requirements.txt ${TEST_ONLY_SKIP_DEP_HASH_VERIFICATION:+--without-hashes}; \ + /root/.local/bin/poetry export --verbose --extras all -o /synapse/requirements.txt ${TEST_ONLY_SKIP_DEP_HASH_VERIFICATION:+--without-hashes}; \ else \ touch /synapse/requirements.txt; \ fi