from code looks like both apktool and meld and python3 are dependencies that should be mentioned in README.
ContainerFile I used:
podman build --rm -t apkdiff -f ContainerFileApkDiff
podman run --rm --name apkdiff -ti apkdiff
FROM debian:sid-slim
RUN set -ex; \
apt-get update; \
DEBIAN_FRONTEND=noninteractive apt-get install --yes -o APT::Install-Suggests=false --no-install-recommends \
python3 \
apktool \
meld \
git; \
rm -rf /var/lib/apt/lists/*; \
useradd -ms /bin/bash appuser;
USER appuser
RUN set -ex; \
cd /home/appuser/; \
git clone --depth 1 https://github.com/daniellockyer/apkdiff;
WORKDIR /home/appuser/apkdiff/
from code looks like both
apktoolandmeldandpython3are dependencies that should be mentioned in README.ContainerFile I used: