| | |
| | | #--------- Generic stuff all our Dockerfiles should start with so we get caching ------------ |
| | | FROM consol/tomcat-8.0 |
| | | FROM tomcat:8.0 |
| | | MAINTAINER Tim Sutton<tim@linfiniti.com> |
| | | |
| | | RUN export DEBIAN_FRONTEND=noninteractive |
| | |
| | | # Or comment this line out if you do not with to use caching |
| | | ADD 71-apt-cacher-ng /etc/apt/apt.conf.d/71-apt-cacher-ng |
| | | |
| | | RUN echo "deb http://archive.ubuntu.com/ubuntu trusty main universe" > /etc/apt/sources.list |
| | | #RUN apt-get -y update |
| | | RUN apt-get -y update |
| | | |
| | | #-------------Application Specific Stuff ---------------------------------------------------- |
| | | |