Skip to content
This repository has been archived by the owner on Dec 2, 2020. It is now read-only.

Commit

Permalink
Update list of supported runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
clareliguori committed Jun 19, 2020
1 parent 4f11a13 commit b199c17
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions img2lambda/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,28 @@ func (r Runtimes) Contains(runtime string) bool {
return false
}

// a list of aws supported runtimes as of 26/01/2019
// a list of aws supported runtimes as of 2020-06-18
var ValidRuntimes = Runtimes{
"nodejs", // eol = 31/10/2016 but included to support existing versions
"nodejs4.3", // eol = 30/04/2018 but included to support existing versions
"nodejs6.10",
"nodejs8.10",
// eol'ed runtimes are included to support existing functions
"nodejs", // eol
"nodejs4.3", // eol
"nodejs4.3-edge", // eol
"nodejs6.10", // eol
"nodejs8.10", // eol
"nodejs10.x",
"nodejs12.x",
"java8",
"java11",
"python2.7",
"python3.6",
"python3.7",
"dotnetcore1.0",
"dotnetcore2.0",
"python3.8",
"dotnetcore1.0", // eol
"dotnetcore2.0", // eol
"dotnetcore2.1",
"nodejs4.3-edge", // eol = 30/04/2018 but included to support existing versions
"dotnetcore3.1",
"go1.x",
"ruby2.5",
"ruby2.7",
"provided",
}

0 comments on commit b199c17

Please sign in to comment.