-1

Is there an easy way to deploy a Clojure application compiled with GraalVM native-image tool to AWS Lambda custom runtime?

1 Answers1

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.

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