Skip to content

Commit b1791f7

Browse files
chore(lambda-nodejs): bump pnpm version in Dockerfile for AWS Lambda Node.js (#34537)
### Issue # (if applicable) Closes #28318 ### Reason for this change The previous version of pnpm (7.30.5) used in the Dockerfile is no longer supported. Therefore, I upgraded pnpm to the latest version 8.x. Additionally, this update addresses the bug reported in issue #28318. ### Description of changes Updated the version of pnpm installed in the Dockerfile from 7.30.5 to 8.15.9, as the previous version is no longer supported. ### Description of how you validated changes I ran the unit tests for aws-lambda-nodejs. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 9f5e507 commit b1791f7

File tree

1 file changed

+1
-1
lines changed
  • packages/aws-cdk-lib/aws-lambda-nodejs/lib

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/aws-lambda-nodejs/lib/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM $IMAGE
77
RUN npm install --global yarn@1.22.5
88

99
# Install pnpm
10-
RUN npm install --global pnpm@7.30.5
10+
RUN npm install --global pnpm@7.33.7
1111

1212
# Install bun
1313
RUN npm install --global bun@1.1.30

0 commit comments

Comments
 (0)