summaryrefslogtreecommitdiffstats
path: root/scripts/docker/android-build-container/setup-docker.sh
blob: 98c13ec48f555dcd710754c1169d049c2c417852 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# Use this to re-create a docker container for building Android binaries

# copy the dependency script into this folder
cp ../../../packaging/android/android-build-wrapper.sh .
cp ../../../packaging/android/variables.sh .
cp ../../../packaging/android/qt-installer-noninteractive.qs .

# create the container (this takes a while)
sudo docker build -t android-builder --squash .