Skip to content

Commit

Permalink
[rubymine/141.1835] Add RubyMine version 7.1.4 build 141.1835
Browse files Browse the repository at this point in the history
  • Loading branch information
zchee committed Sep 6, 2015
1 parent 8796b02 commit 51600a5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ In principle, it supports only the latest Stable or EAP(Early Access Preview) ve
| Application | Build |
|-------------------------------|-------------|
| IntelliJ IDEA 15 EAP | 142.4465.2 |
| RubyMine 7.1.4 | 141.1835 |
| RubyMine EAP 8 | 142.4245.2 |
| PhpStorm 8.0.3 | 139.1348 |
| PhpStorm 9 EAP | 141.1717 |
Expand Down
21 changes: 21 additions & 0 deletions dockerfiles/Dockerfile.rubymine
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 rubymine
ENV VERSION 7.1.4
ENV BUILD 141.1835

RUN curl -LO http://download.jetbrains.com/ruby/RubyMine-$VERSION.tar.gz
RUN tar xf RubyMine-$VERSION.tar.gz

RUN mkdir jar
WORKDIR jar
RUN jar xf ../RubyMine-$VERSION/lib/rubymine.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 ../rubymine.jar .

WORKDIR /

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

0 comments on commit 51600a5

Please sign in to comment.