Update Dockerfile

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

View File

@ -3,14 +3,14 @@ FROM medzik/archlinux:latest
WORKDIR /home/build
# Instapp dependencies
RUN sudo pacman -Sy \
RUN sudo pacman -Sy --noconfirm \
jdk-openjdk \
&& 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 \
&& makepkg -sr --noconfirm \
&& sudo pacman -U ./*.pkg.tar* \
&& cd .. \
&& rm -rf android-sdk-cmdline-tools-latest \