Skip to content

Instantly share code, notes, and snippets.

View jonaseicher's full-sized avatar

Jonas Eicher jonaseicher

  • Munich
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jonaseicher on github.
  • I am jonaseicher (https://keybase.io/jonaseicher) on keybase.
  • I have a public key ASBPmaPjF75OQnoPgqbp1sImgqlstaaQ1-y1ch9IzKk2cwo

To claim this, I am signing this object:

@jonaseicher
jonaseicher / Dockerfile
Created August 23, 2016 10:36
Dockerfile for building and deploying man-vs-food onto tomcat
#Dockerfile
FROM jonaseicher/jdk8-tomcat
MAINTAINER Jonas Eicher <jonaseicher@hotmail.com>
RUN git clone https://github.com/jonaseicher/man-vs-food.git
RUN cd ./man-vs-food && chmod +x gradlew && ./gradlew war
RUN cp ./man-vs-food/build/libs/man-vs-food-*.war /usr/local/tomcat/webapps/
@jonaseicher
jonaseicher / Dockerfile
Last active August 23, 2016 10:37
Dockerfiles based on Tomcat with Oracle JDK 8 and git
#Dockerfile
FROM tomcat
MAINTAINER Jonas Eicher <jonaseicher@hotmail.com>
RUN apt-get update
RUN apt-get install -y git
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections
RUN echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee /etc/apt/sources.list.d/webupd8team-java.list
RUN echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
RUN apt-get update