Hacker News new | ask | show | jobs
by tchiotludo 1541 days ago
Sorry, I didn't see your comment before. We provide 2 image tag, one with no plugins and one with all plugin, more information here ; https://kestra.io/docs/administrator-guide/deployment/docker...

In resume, all image exist with tag full containing all plugins

1 comments

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?
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!