Skip to content
Snippets Groups Projects
Unverified Commit b8b17246 authored by Dan Callahan's avatar Dan Callahan Committed by GitHub
Browse files

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: default avatarDan Callahan <danc@element.io>
parent dcb9c2e8
No related branches found
No related tags found
No related merge requests found
Add rustc as a dependency when building Docker images.
...@@ -28,11 +28,13 @@ RUN apt-get update && apt-get install -y \ ...@@ -28,11 +28,13 @@ RUN apt-get update && apt-get install -y \
libwebp-dev \ libwebp-dev \
libxml++2.6-dev \ libxml++2.6-dev \
libxslt1-dev \ libxslt1-dev \
rustc \
zlib1g-dev \ zlib1g-dev \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Build dependencies that are not available as wheels, to speed up rebuilds # Build dependencies that are not available as wheels, to speed up rebuilds
RUN pip install --prefix="/install" --no-warn-script-location \ RUN pip install --prefix="/install" --no-warn-script-location \
cryptography \
frozendict \ frozendict \
jaeger-client \ jaeger-client \
opentracing \ opentracing \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment