fix: add build deps for arm

This commit is contained in:
Lounès Ksouri 2022-02-22 08:41:19 +01:00
parent 27694ee23d
commit a132387fa8
No known key found for this signature in database
GPG Key ID: CC2EC395FEF53FE0

View File

@ -8,8 +8,9 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
# Install build deps
RUN apt-get update
RUN apt-get install -y --no-install-recommends build-essential
RUN apt-get install -y --no-install-recommends build-essential pkg-config
RUN python -m pip install --upgrade pip
RUN pip install wheel
# Install runtime deps
COPY requirements.txt /tmp/requirements.txt