I want to use kotlin scripting as my devops relate...
# scripting
j
I want to use kotlin scripting as my devops related script and run it on Docker Container. Can we download the deps first so when executing
kts
it will not fetch jar file from maven repo?
v
you can probably simulate maven repo via local directory and then direct script to search in that repo first
a
you can bake deps into docker image as L1 cache
d
if it runs on only a single node, you could use a volume on the deps directory, that way, it downloads all the deps only the first time.