Skip to content

Commit

Permalink
Add build dependencies for pyahocorasick
Browse files Browse the repository at this point in the history
  • Loading branch information
DonnchaC committed Oct 23, 2024
1 parent 37705d1 commit 7772d2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.android
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ RUN apk add --no-cache \

# Install mvt
COPY ./ mvt
RUN apk add --no-cache git \
RUN apk add --no-cache --virtual .build-deps gcc musl-dev \
&& PIP_NO_CACHE_DIR=1 pip3 install ./mvt \
&& apk del git && rm -rf ./mvt
&& apk del .build-deps gcc musl-dev && rm -rf ./mvt

# Installing ABE
ADD --checksum=sha256:a20e07f8b2ea47620aff0267f230c3f1f495f097081fd709eec51cf2a2e11632 \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.ios
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]

0 comments on commit 7772d2d

Please sign in to comment.