Is there an easy way to deploy a Clojure application compiled with GraalVM native-image
tool to AWS Lambda custom runtime?
Asked
Active
Viewed 316 times
-1

Dainius Jocas
- 29
- 5
1 Answers
1
There is a Leiningen template that could help with this problem.
Example:
lein new clojure-graalvm-aws-lambda your-lambda
cd your-lambda
make deploy-lambda-via-container
This example assumes that you have make
and Docker
installed in your system.
Note that the generated project is not a Leiningen project but a tools-deps
project.

Dainius Jocas
- 29
- 5
-
1wow, this is some shameless self-promotion! you have even written this plugin days before asking the question. – erdos May 27 '19 at 15:16