Files
termux-docker/build-all.sh
Leonid Plyushch 0cb4831bd4 initial commit
2020-02-08 18:13:00 +02:00

10 lines
255 B
Bash
Executable File

#!/usr/bin/env bash
docker build -t 'xeffyr/termux:latest' -f i686/Dockerfile .
docker build -t 'xeffyr/termux:x86_64' -f x86_64/Dockerfile .
if [ "$(whoami)" = "xeffyr" ]; then
docker push 'xeffyr/termux:latest'
docker push 'xeffyr/termux:x86_64'
fi