summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2021-02-18 10:17:09 +0000
committerErik Johnston <erik@matrix.org>2021-02-18 10:17:09 +0000
commit3fe29250c424b9567ad71580438659fd27a74302 (patch)
treedbb17fd47bc1481f35f10304796a0846807ce3cf
parentTest circleci config (diff)
downloadsynapse-3fe29250c424b9567ad71580438659fd27a74302.tar.xz
Try building cryptography separately to avoid time outs
-rw-r--r--docker/Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile

index ce404662ce..749b191ec2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile
@@ -38,7 +38,9 @@ ENV CARGO_NET_OFFLINE=${CARGO_NET_OFFLINE} # Build dependencies that are not available as wheels, to speed up rebuilds RUN pip install --prefix="/install" --no-warn-script-location \ - cryptography \ + cryptography + +RUN pip install --prefix="/install" --no-warn-script-location \ frozendict \ jaeger-client \ opentracing \