Skip to content

Instantly share code, notes, and snippets.

@thelebster
Forked from MoriTanosuke/Dockerfile
Created April 12, 2016 13:15
Show Gist options
  • Save thelebster/6e0e33d9cfd058f3e507d658083d47f5 to your computer and use it in GitHub Desktop.
Save thelebster/6e0e33d9cfd058f3e507d658083d47f5 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