Shweta Kumar
Shweta Kumar

Reputation: 31

SAM Application runtime

So when I create an AWS SAM , I mostly have two options for a runtime, for ex.:

  1. nodejs14.x
  2. nodejs14.x (Image)

Second one is apparently a docker Image. I would like to know, is there any performance difference if I choose one over the otherenter image description here

Upvotes: 1

Views: 305

Answers (1)

Ermiya Eskandary
Ermiya Eskandary

Reputation: 23682

Go with nodejs14.x unless you need to use a container - "performance" is subjective but if you don't need to use containers, don't use them as they will come with extra overhead.

Upvotes: 2

Related Questions