lambci / docker-lambda

Docker images and test runners that replicate the live AWS Lambda environment
MIT License
5.83k stars 431 forks source link

Support to uber jar files #274

Closed csgui closed 4 years ago

csgui commented 4 years ago

Hello all! Just a question...

I am planning to use Kotlin to develop a Lambda function. Can I use an uber jar in docker-lambda to check my implementation?

Thanks.

mhart commented 4 years ago

I believe it should work fine – it uses the same class loader as AWS Lambda does, so it should give you an indication of whether it will work on Lambda or not

csgui commented 4 years ago

Just did a test and seems to be working.

To keep as note, what I did:

mhart commented 4 years ago

🙌