Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • briar/briar-reproducer
1 result
Show changes
Commits on Source (1)
FROM debian:stretch FROM debian:jessie-backports
ENV LANG=C.UTF-8 ENV LANG=C.UTF-8
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
......
...@@ -9,7 +9,7 @@ apt-get install -y --no-install-recommends \ ...@@ -9,7 +9,7 @@ apt-get install -y --no-install-recommends \
libmagic1 libmagic1
# Install latest diffoscope (version in Debian stable is outdated) # Install latest diffoscope (version in Debian stable is outdated)
pip3 install diffoscope pip3 install diffoscope==83
# Install latest apktool for verification debugging # Install latest apktool for verification debugging
wget --no-verbose https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.3.3.jar -O /opt/apktool.jar wget --no-verbose https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.3.3.jar -O /opt/apktool.jar
...@@ -18,4 +18,4 @@ cat >/usr/local/bin/apktool <<EOF ...@@ -18,4 +18,4 @@ cat >/usr/local/bin/apktool <<EOF
java -jar /opt/apktool.jar \$@ java -jar /opt/apktool.jar \$@
EOF EOF
chmod +x /usr/local/bin/apktool chmod +x /usr/local/bin/apktool
mkdir -p /root/.local/share/apktool/framework mkdir -p /root/.local/share/apktool/framework
\ No newline at end of file
...@@ -4,6 +4,8 @@ set -x ...@@ -4,6 +4,8 @@ set -x
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
git \ git \
default-jdk-headless \
unzip \ unzip \
wget wget
apt-get install -y --no-install-recommends -t jessie-backports \
openjdk-8-jdk-headless