-
-
Save thelebster/6e0e33d9cfd058f3e507d658083d47f5 to your computer and use it in GitHub Desktop.
Simple docker file to install and run IntelliJ Upsource
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 debian:stable | |
EXPOSE 8080 | |
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install unzip wget openjdk-7-jdk | |
RUN wget -q http://download.jetbrains.com/upsource/upsource-1.0.12551.zip && unzip upsource-1.0.12551.zip | |
RUN cd Upsource && ./bin/upsource.sh start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment