How can i update a container image for a lambda function #7182
-
Hello, I created a container image to be able to overcome the size limits per lambda function (250mb). Or, maybe I am completely wrong on how to update lambda functions and its dependencies, like the container image. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @ChrisDAT20, thanks for reaching out. Have you tried using
Here's link to the documentation: https://docs.aws.amazon.com/cli/latest/reference/lambda/update-function-code.html Hope it helps but please let me know if you have any other questions! |
Beta Was this translation helpful? Give feedback.
Hi @ChrisDAT20, thanks for reaching out.
Have you tried using
update-function-code
AWS CLI command to update Lambda function code with container image type? You can use--image-uri (string)
option as mentioned in the docs below.Here's link to the documentation: https://docs.aws.amazon.com/cli/latest/reference/lambda/update-function-code.html
Hope it helps but please let me know if you have any other questions!