package org.arquillian.cube.containerobject; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD, ElementType.TYPE, ElementType.METHOD}) @Documented public @interface CubeDockerFile { String value() default ""; boolean remove() default true; boolean nocache() default true; }