Hacker News new | ask | show | jobs
by rad_gruchalski 1541 days ago
Hey, no worries. I have seen that page but I wonder if there's a documented way of building an image exactly like your base image. All examples on that page assume FROM kestra:$TAG. Do you have any documentation on how to build that base image so one does not need to rely on your upstream image?
1 comments

There is no documentation for that for now but it's not complicated:

- git clone the project

- ./gradlew executableJar

- cp build/executable/* docker/app/kestra

- docker build -t myimage .

In resume, you just need to have an image providing java 11 and start the executable build by gradle

hope it help

Awesome, thank you!