Fix add missing deps for core db tests

This commit is contained in:
Théophile Diot 2023-06-30 17:02:32 -04:00
parent c93d5a2fcd
commit e0055328af
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ WORKDIR /tmp
COPY requirements.txt .
RUN MAKEFLAGS="-j $(nproc)" pip install --no-cache -r requirements.txt && \
RUN apk add --no-cache gcc musl-dev libffi-dev && \
MAKEFLAGS="-j $(nproc)" pip install --no-cache -r requirements.txt && \
rm -f requirements.txt
WORKDIR /opt/tests