Create Dockerfile

This commit is contained in:
Oskar 2021-10-23 12:56:50 +02:00 committed by GitHub
parent 5bd1a23645
commit 721c6245e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

9
archlinux/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM medzik/archlinux:latest
# Install cmdline tools
RUN git clone https://aur.archlinux.org/android-sdk-cmdline-tools-latest.git \
&& cd android-sdk-cmdline-tools-latest \
&& makepkg -sr \
&& sudo pacman -U ./*.pkg.tar* \
&& cd .. \
&& rm -rf android-sdk-cmdline-tools-latest