这是我的Dockefile:
# Start with a base image containing Java runtime
FROM openjdk:8-jdk-alpine
# Add a volume pointing to /tmp
VOLUME /tmp
# Make port 8080 available to the world outside this container
EXPOSE 8080
# The application's jar file
COPY Server_Changes/glowroot /tmp
ARG JAR_FILE=target/websocket-demo-0.0.1-SNAPSHOT.jar
ARG OK=/tmp/glowroot.jar
# Add the application's jar to the container
ADD ${JAR_FILE} websocket-demo.jar
# Run the jar file
ENTRYPOINT ["java", " -javaagent:/glowroot.jar" , "- Dglowroot.agent.id=Docker "," -jar /websocket-demo.jar"]
构建图像时出现以下错误:
找不到或加载主类javaagent:.glowroot.jar
有人可以解释为什么吗?
答案 0 :(得分:0)
在RUN
,ENTRYPOINT
和CMD
命令中使用类似JSON的语法时,引号内的空格很重要。特别是当你说
ENTRYPOINT ["java", " -javaagent:/glowroot.jar" , ...]
# ^
空格是选项的一部分;并且由于该选项不是以-
开头,因此Java将其解释为类名。基本上所有选项都是如此。在最后一个选项中,-jar
和类名是两个单独的选项,并且需要在两个单独的“单词”中。
(考虑将ENTRYPOINT
更改为CMD
以使图像更易于调试,并删除VOLUME
声明;这只会导致意外的奇怪副作用。)
CMD ["java", "-javaagent:/glowroot.jar",
"-Dglowroot.agent.id=Docker",
"-jar", "/websocket-demo.jar"]