Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
briar-reproducer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
briar
briar-reproducer
Compare revisions
master to jessie-backports
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
briar/briar-reproducer
Select target project
No results found
jessie-backports
Select Git revision
Swap
Target
briar/briar-reproducer
Select target project
briar/briar-reproducer
1 result
master
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Use jessie-backports container as base image
· 17f0598a
Torsten Grote
authored
7 years ago
17f0598a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
install-dependencies-verification.sh
+2
-2
2 additions, 2 deletions
install-dependencies-verification.sh
install-dependencies.sh
+3
-1
3 additions, 1 deletion
install-dependencies.sh
with
6 additions
and
4 deletions
Dockerfile
View file @
17f0598a
FROM
debian:
stretch
FROM
debian:
jessie-backports
ENV
LANG=C.UTF-8
ENV
DEBIAN_FRONTEND=noninteractive
...
...
This diff is collapsed.
Click to expand it.
install-dependencies-verification.sh
View file @
17f0598a
...
...
@@ -9,7 +9,7 @@ apt-get install -y --no-install-recommends \
libmagic1
# Install latest diffoscope (version in Debian stable is outdated)
pip3
install
diffoscope
pip3
install
diffoscope
==
83
# Install latest apktool for verification debugging
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
java -jar /opt/apktool.jar
\$
@
EOF
chmod
+x /usr/local/bin/apktool
mkdir
-p
/root/.local/share/apktool/framework
\ No newline at end of file
mkdir
-p
/root/.local/share/apktool/framework
This diff is collapsed.
Click to expand it.
install-dependencies.sh
View file @
17f0598a
...
...
@@ -4,6 +4,8 @@ set -x
apt-get
install
-y
--no-install-recommends
\
git
\
default-jdk-headless
\
unzip
\
wget
apt-get
install
-y
--no-install-recommends
-t
jessie-backports
\
openjdk-8-jdk-headless
This diff is collapsed.
Click to expand it.