How to copy dockerFileDir config file to maven dir?

I need to copy file kafka.client.truststore.jkskafka_client_jaas.conf totarget/docker/fengxin58/demo-fabric8/0.0.1-SNAPSHOT/build/maven, after building the project using the default configuration,but only app.jar is found after building operation under target dir maven

tim 20180227150352

pom.xml

<!-- docker plugin -->
<plugin>
    <groupId>io.fabric8</groupId>
    <artifactId>docker-maven-plugin</artifactId>
    <version>0.24.0</version>
    <configuration>
        <images>
            <image>
                <!--
                A sanitized version of the artefact id so that
                it can be used as part of an Docker image name.
                I.e. it is converted to all lower case (as required by Docker)
                %a 构件id
                -->
                <name>fengxin58/%a:%v</name>
                <registry>registry.cn-hangzhou.aliyuncs.com</registry>
                <build>
                    <!--<filter>true</filter>-->
                    <dockerFileDir>${basedir}/src/main/docker</dockerFileDir>
                    <assembly>
                        <descriptorRef>artifact</descriptorRef>
                        <!--jar的输出目录, 默认值为maven-->
                        <!--<name>maven</name>-->
                        <!--default value is dir-->
                        <mode>dir</mode>
                    </assembly>
                    <tags>
                        <tag>${project.version}</tag>
                    </tags>

                </build>
            </image>
        </images>
    </configuration>
</plugin>
阅读 2k
1 个回答
新手上路,请多包涵

有同学回答吗?

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题