From 0a56726ef5209bb577fbc35a3997ac1e17e89dc3 Mon Sep 17 00:00:00 2001 From: Setu Shah Date: Wed, 31 Aug 2022 17:33:19 -0700 Subject: [PATCH] fix: Pin version correctly --- packages/@aws-cdk/aws-lambda-python/lib/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-lambda-python/lib/Dockerfile b/packages/@aws-cdk/aws-lambda-python/lib/Dockerfile index 8cc21cb2bab92..e1874a8f7a1e2 100644 --- a/packages/@aws-cdk/aws-lambda-python/lib/Dockerfile +++ b/packages/@aws-cdk/aws-lambda-python/lib/Dockerfile @@ -14,6 +14,6 @@ RUN pip install --upgrade pip # poetry>=1.2 cannot use MD5 hashes for installing packages, which is the only hashes # AWS Code Artifact supports. # https://github.com/python-poetry/poetry/issues/6301 -RUN pip install pipenv==2022.4.8 poetry<1.2 +RUN pip install pipenv==2022.4.8 "poetry<1.2" CMD [ "python" ]