We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f645415 commit ffa1f18Copy full SHA for ffa1f18
changelog.d/13372.docker
@@ -0,0 +1 @@
1
+Make docker images build on armv7 by installing cryptography dependencies in the "requirements" stage. Contributed by Jasper Spaans.
docker/Dockerfile
@@ -40,7 +40,8 @@ FROM docker.io/python:${PYTHON_VERSION}-slim as requirements
40
RUN \
41
--mount=type=cache,target=/var/cache/apt,sharing=locked \
42
--mount=type=cache,target=/var/lib/apt,sharing=locked \
43
- apt-get update -qq && apt-get install -yqq git \
+ apt-get update -qq && apt-get install -yqq \
44
+ build-essential cargo git libffi-dev libssl-dev \
45
&& rm -rf /var/lib/apt/lists/*
46
47
# We install poetry in its own build stage to avoid its dependencies conflicting with
0 commit comments