Skip to content

Commit

Permalink
Merge pull request #163 from base2Services/feature/python3.6-EOL
Browse files Browse the repository at this point in the history
update python 3.6 runtime to 3.7 because of lambda 3.6 runtime end of life
  • Loading branch information
Guslington authored Apr 20, 2022
2 parents 63b5eef + cbeb2e0 commit 73c8ac8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/default_lambdas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default_lambdas:
local: true
role: acmissuevalidate
package_cmd: ./install.sh
runtime: python3.6
runtime: python3.7
code: lambdas/acm_issuer_validator/lib
vpc: false
named: false
Expand Down
2 changes: 1 addition & 1 deletion lambdas/acm_issuer_validator/lib/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ function pipinstall () {
if [[ $(which docker) == '' ]]; then
pipinstall
else
docker run --rm -v $DIR/..:/dst -w /dst -u $UID python:3.6-alpine pip install aws-acm-cert-validator==0.1.11 -t lib
docker run --rm -v $DIR/..:/dst -w /dst -u $UID python:3.7-alpine pip install aws-acm-cert-validator==0.1.11 -t lib
fi

0 comments on commit 73c8ac8

Please sign in to comment.