1

使用 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?


更新 - 1

根据在本地机器上尝试以下步骤的评论:

  1. 运行命令mvn clean。那个清理过的目标文件夹

  2. 更新了 Dockerfile

FROM maven:3.5-jdk-8 AS build
COPY src 。
复制 pom.xml 。
运行 mvn -f pom.xml 清理包

FROM openjdk:8
VOLUME /tmp
COPY --from=build target/helloworld.jar helloworld.jar
EXPOSE 8081
ENTRYPOINT ["java","-jar","helloworld.jar"]

  1. Randocker build . -t helloworld:v1命令和创建的图像。

  2. 然后运行命令启动容器: docker run -p 8081:8081 -n helloworld-app -d helloworld:v1

容器启动并退出,日志中出现错误:

Exception in thread "main" java.lang.ClassNotFoundException: com.example.HelloWorldApplication at java.net.URLClassLoader.findClass(URLClassLoader.java:382)

4

1 回答 1

2

看起来文件路径有问题。

尝试以下更新的 Dockerfile,它显式设置工作目录。在图像之间复制 jar 时,它还使用显式文件路径。

FROM maven:3.5-jdk-8-slim AS build
WORKDIR /home/app
COPY src     /home/app/src
COPY pom.xml /home/app
RUN mvn clean package

FROM openjdk:8-jre-slim
COPY --from=build /home/app/target/helloworld-0.0.1-SNAPSHOT.jar /usr/local/lib/helloworld.jar
EXPOSE 8081
ENTRYPOINT ["java","-jar","/usr/local/lib/helloworld.jar"]

补充说明:

  • 有关构建 Spring Boot 应用程序的完整示例,请参阅相关答案
  • 我将第二阶段基于 JRE 图像。减小输出图像的大小。
于 2019-02-22T17:57:29.253 回答