Skip to content

Commit

Permalink
[clion-eap/142.4675.5] Upgrade ClionEAP to 1.2 build 142.4675.5
Browse files Browse the repository at this point in the history
Signed-off-by: Koichi Shiraishi <zcheeee@gmail.com>
  • Loading branch information
zchee committed Sep 12, 2015
1 parent a45b5d1 commit bb2ccb5
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ In principle, it supports only the latest Stable or EAP(Early Access Preview) ve
| [PyCharm 4.5.4](https://www.jetbrains.com/pycharm/download/) | 141.2569 |
| [PyCharm EAP 4.5.4](https://confluence.jetbrains.com/pages/viewpage.action?pageId=23004355) | 141.2569 |
| [AppCode EAP 3.3](https://confluence.jetbrains.com/display/OBJC/AppCode+EAP) | 142.4675.7 |
| [Android Studio Beta Channel](http://tools.android.com/download/studio/beta) 1.3.2 | 141.2178183 |
| [CLion 1.1.1](https://confluence.jetbrains.com/display/CLION/Early+Access+Program) | 141.2614.4 |
| [Android Studio Beta Channel 1.3.2](http://tools.android.com/download/studio/beta) | 141.2178183 |
| [CLion 1.1.1](https://www.jetbrains.com/clion/download/) | 141.2614.4 |
| [CLion 1.2](https://confluence.jetbrains.com/display/CLION/Early+Access+Program) | 142.4675.5 |

If you want other ide or old version, please [issues](https://github.com/zchee/Seti_JetBrains/issues).

Expand Down
3 changes: 1 addition & 2 deletions dockerfiles/Dockerfile.clion
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ ENV JAVA_VERSION openjdk-8u66-jdk
ENV APP_NAME clion
ENV VERSION 1.1.1
ENV BUILD 141.2614.4
ENV EXTRACT_DIR clion-1.1.1

RUN curl -LO https://download.jetbrains.com/cpp/$APP_NAME-$VERSION.tar.gz
RUN tar xf $APP_NAME-$VERSION.tar.gz

RUN mkdir jar
WORKDIR jar
RUN jar xf ../$EXTRACT_DIR/lib/clion.jar
RUN jar xf ../clion-1.1.1/lib/clion.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 ../clion.jar .
Expand Down
21 changes: 21 additions & 0 deletions dockerfiles/Dockerfile.clion-eap
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM java:openjdk-8u66-jdk
MAINTAINER zchee <zcheeee@gmail.com>

ENV JAVA_VERSION openjdk-8u66-jdk
ENV APP_NAME clion
ENV VERSION 1.2
ENV BUILD 142.4675.5

RUN curl -LO https://download.jetbrains.com/cpp/$APP_NAME-$BUILD.tar.gz
RUN tar xf $APP_NAME-$BUILD.tar.gz

RUN mkdir jar
WORKDIR jar
RUN jar xf ../clion-$BUILD/lib/clion.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 ../clion.jar .

WORKDIR /

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

0 comments on commit bb2ccb5

Please sign in to comment.