Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit b8b1724

Browse files
authored
Add rustc to Docker image build environment (#9405)
This is needed to build the cryptography library, since it does not provide wheels for ARMv7. Fixes #9403 Signed-off-by: Dan Callahan <[email protected]>
1 parent dcb9c2e commit b8b1724

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

changelog.d/9405.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add rustc as a dependency when building Docker images.

docker/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ RUN apt-get update && apt-get install -y \
2828
libwebp-dev \
2929
libxml++2.6-dev \
3030
libxslt1-dev \
31+
rustc \
3132
zlib1g-dev \
3233
&& rm -rf /var/lib/apt/lists/*
3334

3435
# Build dependencies that are not available as wheels, to speed up rebuilds
3536
RUN pip install --prefix="/install" --no-warn-script-location \
37+
cryptography \
3638
frozendict \
3739
jaeger-client \
3840
opentracing \

0 commit comments

Comments
 (0)