View Javadoc
1   package io.micronaut.build;
2   
3   /**
4    * Different strategies for building docker images.
5    *
6    * @author graemerocher
7    * @since 1.1
8    */
9   public enum DockerBuildStrategy {
10      /**
11       * An oracle function
12       */
13      ORACLE_FUNCTION,
14      /**
15       * An AWS Lambda
16       */
17      LAMBDA,
18      /**
19       * Default docker build strategy
20       */
21      DEFAULT
22  }