I have been searching in the documentation for Clickstack and on the Cloudbees Community Github to create a custom container. There is a standard template for apps and one project for Tomcat7 but none forking the Cloudbees default Tomcat6. I would like to add some dependencies into the Tomcat6 container instead of bundling them in the application WAR. For example, an application could have AWS sdk as provided in pom.xml
  <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>2.4</version>
        <scope>provided</scope>
  </dependency>
  <dependency>
        <groupId>com.amazonaws</groupId>
        <artifactId>aws-java-sdk</artifactId>
        <version>1.4.5</version>
        <scope>provided</scope>
  </dependency>
this seems simple. However (in my little understanding of things) do I need to develop the container from scratch?