-
Hi all, I am using docker/podman and everything is working like a charm to use planetiler. But I need to use a different base image due to some CVSS requirements on my side. I can't find it in the project and I want to use it as a reference? Currently, I don't know which packages are required apart from Java 21. Is there a list of all requirements (like jib-maven-plugin:3.4.0) and the entry point __cacert_entrypoint.sh? There also seems to be a mistake because the Image was supposedly built 53 years ago;-)
This is probably due to jib-maven-plugin:3.4.0 when I look at it via docker/podman inspect:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Planetiler uses jib to build the docker image, you can change the base image here: planetiler/planetiler-dist/pom.xml Lines 62 to 64 in 5178514 If you want to make a custom docker image, you can also get the jar file into your image and just run the java commands from the "run without docker" instructions? The date issue is one weird thing jib does that I haven't quite figured out how to fix - if you have any ideas let me know! |
Beta Was this translation helpful? Give feedback.
-
I created a Containerfile by myself using the ubi9 (RHEL) image and a non-root user. Stored in my example as containerfile
This image can be built via docker /podman via
and can be run like in the example
|
Beta Was this translation helpful? Give feedback.
-
@msbarry Do you know if it is native possible to set the arguments like |
Beta Was this translation helpful? Give feedback.
I created a Containerfile by myself using the ubi9 (RHEL) image and a non-root user.
Maybe this is helpful for other users as well.
Stored in my example as containerfile