Update Dockerfile

This commit is contained in:
Oskar 2021-10-23 13:11:13 +02:00 committed by GitHub
parent 8330218c23
commit d7f108e1af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -5,13 +5,13 @@ WORKDIR /home/build
# Instapp dependencies
RUN sudo pacman -Sy --noconfirm \
jdk-openjdk \
&& sudo pacman -Scc
&& yes | sudo pacman -Scc
# Install cmdline tools
RUN git clone https://aur.archlinux.org/android-sdk-cmdline-tools-latest.git \
&& cd android-sdk-cmdline-tools-latest \
&& makepkg -sr --noconfirm \
&& sudo pacman -U ./*.pkg.tar* \
&& sudo pacman -U ./*.pkg.tar* --noconfirm \
&& cd .. \
&& rm -rf android-sdk-cmdline-tools-latest \
&& sudo pacman -Scc
&& yes | sudo pacman -Scc