Created
November 26, 2016 19:03
-
-
Save AndrienkoAleksandr/51ab8d885795f884d7d54f7049c55e6c to your computer and use it in GitHub Desktop.
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 codenvy/ubuntu_android:latest | |
ENV GRADLE_VERSION=2.3 | |
ENV GRADLE_HOME=/home/user/gradle-$GRADLE_VERSION | |
ENV PATH=$GRADLE_HOME/bin:$PATH | |
RUN wget -P /home/user/ --quiet https://services.gradle.org/distributions/gradle-$GRADLE_VERSION-bin.zip && \ | |
cd /home/user/ && unzip gradle-$GRADLE_VERSION-bin.zip && \ | |
rm gradle-$GRADLE_VERSION-bin.zip | |
EXPOSE 9000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment