Skip to content

Instantly share code, notes, and snippets.

View frankies's full-sized avatar
🎯
Focusing

frankies frankies

🎯
Focusing
View GitHub Profile
@tonespy
tonespy / Dockerfile
Created March 3, 2017 14:07
Android Development Area Docker
FROM ubuntu:latest
RUN cd /opt
RUN mkdir android-sdk-linux && cd android-sdk-linux/
RUN apt-get update -qq \
&& apt-get install -y openjdk-8-jdk \
&& apt-get install -y wget \
&& apt-get install -y expect \