mirror of
https://github.com/mvt-project/mvt.git
synced 2026-09-04 09:00:54 +02:00
Merge remote-tracking branch 'origin/feat/whatsapp-contacts-module' into feat/whatsapp-contacts-module
This commit is contained in:
@@ -59,6 +59,9 @@ jobs:
|
|||||||
type=raw,enable=${{ github.ref_type == 'tag' }},value=${{ github.ref_name }},suffix=${{ matrix.platform.tag-suffix }}
|
type=raw,enable=${{ github.ref_type == 'tag' }},value=${{ github.ref_name }},suffix=${{ matrix.platform.tag-suffix }}
|
||||||
type=sha,suffix=${{ matrix.platform.tag-suffix }}
|
type=sha,suffix=${{ matrix.platform.tag-suffix }}
|
||||||
type=sha,format=long,suffix=${{ matrix.platform.tag-suffix }}
|
type=sha,format=long,suffix=${{ matrix.platform.tag-suffix }}
|
||||||
|
# Register emulators so Buildx can build the ARM64 images on the AMD64 runner.
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v4
|
||||||
# This step sets up some additional capabilities to generate the provenance and sbom attestations
|
# This step sets up some additional capabilities to generate the provenance and sbom attestations
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v4
|
uses: docker/setup-buildx-action@v4
|
||||||
@@ -71,6 +74,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
file: ${{ matrix.platform.dockerfile }}
|
file: ${{ matrix.platform.dockerfile }}
|
||||||
context: .
|
context: .
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|||||||
+13
-2
@@ -119,12 +119,23 @@ ARG DEBIAN_FRONTEND=noninteractive
|
|||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y \
|
&& apt-get install -y \
|
||||||
adb \
|
adb \
|
||||||
|
binutils \
|
||||||
default-jre-headless \
|
default-jre-headless \
|
||||||
|
file \
|
||||||
|
jq \
|
||||||
|
less \
|
||||||
libcurl4 \
|
libcurl4 \
|
||||||
|
libimage-exiftool-perl \
|
||||||
libssl3 \
|
libssl3 \
|
||||||
libusb-1.0-0 \
|
libusb-1.0-0 \
|
||||||
|
moreutils \
|
||||||
|
p7zip-full \
|
||||||
python3 \
|
python3 \
|
||||||
sqlite3
|
ripgrep \
|
||||||
|
sqlite3 \
|
||||||
|
tree \
|
||||||
|
unzip \
|
||||||
|
xxd
|
||||||
COPY --from=build-libplist /build /
|
COPY --from=build-libplist /build /
|
||||||
COPY --from=build-libimobiledevice-glue /build /
|
COPY --from=build-libimobiledevice-glue /build /
|
||||||
COPY --from=build-libtatsu /build /
|
COPY --from=build-libtatsu /build /
|
||||||
@@ -144,7 +155,7 @@ ADD --checksum=sha256:a20e07f8b2ea47620aff0267f230c3f1f495f097081fd709eec51cf2a2
|
|||||||
RUN echo 'alias abe="java -jar /opt/abe/abe.jar"' >> ~/.bashrc
|
RUN echo 'alias abe="java -jar /opt/abe/abe.jar"' >> ~/.bashrc
|
||||||
|
|
||||||
# Generate adb key folder
|
# Generate adb key folder
|
||||||
RUN echo 'if [ ! -f /root/.android/adbkey ]; then adb keygen /root/.android/adbkey 2&>1 > /dev/null; fi' >> ~/.bashrc
|
RUN echo 'if [ ! -f /root/.android/adbkey ]; then adb keygen /root/.android/adbkey > /dev/null 2>&1; fi' >> ~/.bashrc
|
||||||
RUN mkdir /root/.android
|
RUN mkdir /root/.android
|
||||||
|
|
||||||
# Setup investigations environment
|
# Setup investigations environment
|
||||||
|
|||||||
+1
-1
@@ -31,7 +31,7 @@ ADD --checksum=sha256:a20e07f8b2ea47620aff0267f230c3f1f495f097081fd709eec51cf2a2
|
|||||||
RUN echo 'alias abe="java -jar /opt/abe/abe.jar"' >> ~/.bashrc
|
RUN echo 'alias abe="java -jar /opt/abe/abe.jar"' >> ~/.bashrc
|
||||||
|
|
||||||
# Generate adb key folder
|
# Generate adb key folder
|
||||||
RUN echo 'if [ ! -f /root/.android/adbkey ]; then adb keygen /root/.android/adbkey 2&>1 > /dev/null; fi' >> ~/.bashrc
|
RUN echo 'if [ ! -f /root/.android/adbkey ]; then adb keygen /root/.android/adbkey > /dev/null 2>&1; fi' >> ~/.bashrc
|
||||||
RUN mkdir /root/.android
|
RUN mkdir /root/.android
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/local/bin/mvt-android" ]
|
ENTRYPOINT [ "/usr/local/bin/mvt-android" ]
|
||||||
|
|||||||
Reference in New Issue
Block a user