From d4e5959e0daa3165ca7034e55d01ab412d538305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BAben=20Fonseca?= Date: Thu, 6 Oct 2022 12:18:33 +0200 Subject: [PATCH] fix(python): remove jmespath dependency --- layer/Python/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layer/Python/Dockerfile b/layer/Python/Dockerfile index 682c596..5541e04 100644 --- a/layer/Python/Dockerfile +++ b/layer/Python/Dockerfile @@ -19,10 +19,10 @@ RUN cd /asset && \ # remove boto3 and botocore (already available in Lambda Runtime) rm -rf python/boto* && \ # remove boto3 dependencies - rm -rf python/s3transfer* python/*dateutil* python/urllib3* python/six* && \ + rm -rf python/s3transfer* python/*dateutil* python/urllib3* python/six* python/jmespath* && \ # remove debugging symbols find python -name '*.so' -type f -exec strip "{}" \; && \ # remove tests find python -wholename "*/tests/*" -type f -delete && \ # remove python bytecode - find python -regex '^.*\(__pycache__\|\.py[co]\)$' -delete \ No newline at end of file + find python -regex '^.*\(__pycache__\|\.py[co]\)$' -delete