tisonkun commented on code in PR #17129: URL: https://github.com/apache/pulsar/pull/17129#discussion_r948613268
########## docker/pulsar/Dockerfile: ########## @@ -76,8 +86,8 @@ RUN pip3 install pyyaml==5.4.1 # 4. /pulsar - hadoop writes to this directory RUN mkdir /pulsar && chmod g+w /pulsar -ENV JAVA_HOME /usr/lib/jvm/java-17-openjdk-amd64 -RUN echo networkaddress.cache.ttl=1 >> /usr/lib/jvm/java-17-openjdk-amd64/conf/security/java.security +ENV JAVA_HOME /usr/lib/jvm/temurin-17-jdk-amd64 +RUN echo networkaddress.cache.ttl=1 >> /usr/lib/jvm/temurin-17-jdk-amd64/conf/security/java.security Review Comment: After add: ``` RUN mkdir -p /usr/lib/jvm/java-17-openjdk-amd64/conf/security ``` this issue vanished. I may submit a patch to add it after you migrate openjdk to temurin. `mkdir -p` should not do harm. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
