Google Cloud Platform 管道/容器构建器问题使用 COPY 或 ADD 命令为

使用 Spring Boot (2.1.3)、Java 8、Maven 创建了基本的 HelloWorld 微服务。


pom.xml 具有如下所示的 Maven 插件条目


<plugin>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-maven-plugin</artifactId>

            <configuration>

                    <mainClass>com.example.HelloWorldApplication</mainClass>

            </configuration>

        </plugin>

Dockerfile 如下所示


FROM openjdk:8

VOLUME /tmp

ADD target/helloworld.jar helloworld.jar

EXPOSE 8081

ENTRYPOINT ["java","-jar","helloworld.jar"]

使用命令在本地计算机上创建图像


docker build . -t helloworld:v1

通过从中创建容器来验证。将代码签入到 docker-hub 帐户和 github 帐户。


登录谷歌云平台(GCP),创建kubernetes集群,通过配置helloworld微服务代码所在的github url创建管道(使用容器构建器)。运行构建有两个选项(使用 Dockerfile 或 cloudbuild.yaml)。我正在使用 Dockerfile 来运行构建。


当构建被启动运行时,Dockerfile 中的这一行失败


ADD target/helloworld.jar helloworld.jar

GCP 日志中出现的错误:


ADD failed: stat /var/lib/docker/tmp/docker-builderxxxxxx/target/helloworld.jar: no such file or directory

我尝试用 COPY 命令替换它,但问题仍然相同。


注意:我尝试使用 cloudbuild.yaml 以下是我的 cloudbuild.yaml 的外观:


  steps:

  # Build the helloworld container image.

  - name: 'gcr.io/cloud-builders/docker'

    args:

      - 'build'

      - '-t'

      - 'gcr.io/${PROJECT_ID}/helloworld:${TAG_NAME}'

      - '.'

这没有任何区别。问题保持不变。


知道 Springboot Java 应用程序是否有一些特定的配置可以在 Google Cloud Platform 中构建良好的 Dockerfile?


繁花如伊
浏览 100回答 1
1回答

蝴蝶不菲

看起来文件路径有问题。尝试以下更新的 Dockerfile,它显式设置工作目录。在图像之间复制 jar 时,它还使用显式文件路径。FROM maven:3.5-jdk-8-slim AS buildWORKDIR /home/appCOPY src&nbsp; &nbsp; &nbsp;/home/app/srcCOPY pom.xml /home/appRUN mvn clean packageFROM openjdk:8-jre-slimCOPY --from=build /home/app/target/helloworld-0.0.1-SNAPSHOT.jar /usr/local/lib/helloworld.jarEXPOSE 8081ENTRYPOINT ["java","-jar","/usr/local/lib/helloworld.jar"]补充说明:有关构建 Spring Boot 应用程序的完整示例,请参阅相关答案我将第二阶段基于 JRE 图像。减小输出图像的大小。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java