Skip to content

Commit

Permalink
[androidstudio/141.2178183] Add AndroidStudioBeta to 1.3.2 build 141.…
Browse files Browse the repository at this point in the history
…2178183

Signed-off-by: Koichi Shiraishi <zcheeee@gmail.com>
  • Loading branch information
zchee committed Aug 27, 2015
1 parent 33d690a commit 4a058a0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Dockerfile.androidstudio
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM java:openjdk-8u66-jdk
MAINTAINER zchee <zcheeee@gmail.com>

ENV JAVA_VERSION openjdk-8u66-jdk
ENV APP_NAME android-studio-ide
ENV VERSION 1.3.2.0
ENV BUILD 141.2178183
ENV JAR idea
ENV EXTRACT_DIR android-studio

RUN curl -LO https://dl.google.com/dl/android/studio/ide-zips/$VERSION/$APP_NAME-$BUILD-linux.zip
RUN unzip $APP_NAME-$BUILD-linux.zip

RUN mkdir jar
WORKDIR jar
RUN jar xf ../$EXTRACT_DIR/lib/$JAR.jar

RUN curl -L https://raw.githubusercontent.com/zchee/Seti_JetBrains/master/properties/darcula.properties > ./com/intellij/ide/ui/laf/darcula/darcula.properties
RUN jar cf ../androidstudio.jar .

WORKDIR /

CMD ["cat", "androidstudio.jar"]

0 comments on commit 4a058a0

Please sign in to comment.