This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd /tmp | |
| pwd | |
| #Download Android SDK from Google and unzip it | |
| wget http://dl.google.com/android/android-sdk_r24.1.2-linux.tgz | |
| tar zxvf android-sdk_r24.1.2-linux.tgz | |
| rm android-sdk_r24.1.2-linux.tgz | |
| #Set extracted SDK location to $PATH so we can use commands | |
| export ANDROID_HOME="/tmp/android-sdk-linux" | |
| export PATH="$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$PATH" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ruby:2.3.0 | |
| LABEL maintainer="Kaitlyn Tierney, [email protected]" | |
| ENV RAILS_ENV=test | |
| RUN apt-get update -qq \ | |
| && apt-get install -y --no-install-recommends \ | |
| build-essential \ | |
| libpq-dev \ | |
| nodejs \ |
OlderNewer