crossoverJie commented on code in PR #1037: URL: https://github.com/apache/pulsar-client-go/pull/1037#discussion_r1241444583
########## Dockerfile: ########## @@ -25,7 +25,7 @@ ARG GOLANG_IMAGE=golang:latest FROM $PULSAR_IMAGE as pulsar FROM $GOLANG_IMAGE -RUN apt-get update && apt-get install -y openjdk-17-jre-headless ca-certificates +RUN apt-get update && apt-get install -y openjdk-17-jre ca-certificates Review Comment: > According to [bugs.launchpad.net/ubuntu/+source/ca-certificates-java/+bug/1998065](https://bugs.launchpad.net/ubuntu/+source/ca-certificates-java/+bug/1998065), how about trying to install ca-certificates-java before java. https://github.com/crossoverJie/pulsar-client-go/actions/runs/5373160775/jobs/9747260724?pr=5 ``` RUN apt-get update && apt-get install -y ca-certificates-java openjdk-17-jre-headless RUN apt-get update && apt-get install -y ca-certificates openjdk-17-jre-headless ``` Neither of those methods worked. -- 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]
