Skip to content

Instantly share code, notes, and snippets.

@MoriTanosuke
Created December 12, 2014 12:47
Show Gist options
  • Save MoriTanosuke/17a4527c2996930767ba to your computer and use it in GitHub Desktop.
Save MoriTanosuke/17a4527c2996930767ba to your computer and use it in GitHub Desktop.
Simple docker file to install and run IntelliJ Upsource
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