Is it possible to run lamba container image that wrap another docker image?

0

I have a docker image (let call it image A), it is a ML docker image, with nvidia runtime with size is around 6GB. To run this image, i need to pass argument to it (python main.py -....) Is it possible to wrap image A into a lambda container runtime and use lambda function to execute the same logic (pass argument to A)? (I cannot change any code of image A).

asked 10 months ago235 views
1 Answer
2

Given your constraints, you might consider using Amazon Elastic Container Service (ECS) with EC2 instances, which support larger Docker containers, including those using GPU resources.

I would suggest you refer to the following documentation to select the proper instance types: Working with GPUs on Amazon ECS

profile picture
EXPERT
answered 10 months ago
  • If the answer is helpful, please click "Accept Answer" and upvote it.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions