-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[androidstudio/141.2178183] Add AndroidStudioBeta to 1.3.2 build 141.…
…2178183 Signed-off-by: Koichi Shiraishi <zcheeee@gmail.com>
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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"] |