Skip to content

Commit 4f2ea7f

Browse files
committed
Add missing library (libffi-dev) during wheel builds
1 parent 7b97d79 commit 4f2ea7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ RUN chmod +x /usr/local/bin/plantuml
1010

1111
# Download Python Markdown + dependencies
1212
COPY config/requirements.txt /usr/local/src/requirements.txt
13-
RUN apk add --no-cache gcc git musl-dev && \
13+
RUN apk add --no-cache gcc git musl-dev libffi-dev && \
1414
pip install --no-cache-dir -r /usr/local/src/requirements.txt && \
15-
apk del gcc musl-dev
15+
apk del gcc musl-dev libffi-dev
1616

1717
# Configuration
1818
COPY config/mkdocs.yml /usr/local/src/mkdocs.yml

0 commit comments

Comments
 (0)