Skip to content

Instantly share code, notes, and snippets.

@orhanhenrik
Created February 5, 2018 11:48
Show Gist options
  • Save orhanhenrik/7e67bc376e0b1accee815634040145d3 to your computer and use it in GitHub Desktop.
Save orhanhenrik/7e67bc376e0b1accee815634040145d3 to your computer and use it in GitHub Desktop.
Dockerfile for icCube
FROM java:8-jre-alpine
RUN apk add --no-cache curl
WORKDIR /icCube
RUN curl -O https://www.iccube.com/downloads/6.5.4/icCube-6.5.4.zip && unzip icCube-6.5.4.zip && rm -fr icCube-6.5.4.zip
EXPOSE 8282
CMD ["/icCube/bin/icCube.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment