Downgrade Node version to 14 for deploy job
Node 15.6.0+ has a bug that causes serverless to produce a zipped package with empty files. Deployment succeeds but the Lambda function fails because handler.py is empty. This is supposedly worked around in the latest serverless and its dependencies, but upgrading to serverless v2+ causes other breaking changes. Downgrade to Node 14 for now. https://github.com/serverless/serverless/issues/8772
This commit is contained in:
parent
d727889486
commit
98ba099269
1 changed files with 1 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:16
|
||||
FROM node:14
|
||||
|
||||
ARG JENKINS_UID=386
|
||||
ARG JENKINS_GID=386
|
||||
|
|
|
|||
Loading…
Reference in a new issue