Add build dependencies for pyahocorasick

This commit is contained in:
Donncha Ó Cearbhaill
2024-10-23 15:10:11 +02:00
parent 37705d11fa
commit 7772d2de72
2 changed files with 4 additions and 4 deletions

View File

@@ -130,8 +130,8 @@ COPY --from=build-usbmuxd /build /
# Install mvt using the locally checked out source
COPY ./ mvt
RUN apk add --no-cache git \
RUN apk add --no-cache --virtual .build-deps git gcc musl-dev \
&& PIP_NO_CACHE_DIR=1 pip3 install ./mvt \
&& apk del git && rm -rf ./mvt
&& apk del .build-deps git gcc musl-dev && rm -rf ./mvt
ENTRYPOINT [ "/usr/local/bin/mvt-ios" ]