Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit bb45d58

Browse files
authored
fix(python): remove jmespath dependency (#8)
1 parent c8d7591 commit bb45d58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

layer/Python/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ RUN cd /asset && \
1919
# remove boto3 and botocore (already available in Lambda Runtime)
2020
rm -rf python/boto* && \
2121
# remove boto3 dependencies
22-
rm -rf python/s3transfer* python/*dateutil* python/urllib3* python/six* && \
22+
rm -rf python/s3transfer* python/*dateutil* python/urllib3* python/six* python/jmespath* && \
2323
# remove debugging symbols
2424
find python -name '*.so' -type f -exec strip "{}" \; && \
2525
# remove tests
2626
find python -wholename "*/tests/*" -type f -delete && \
2727
# remove python bytecode
28-
find python -regex '^.*\(__pycache__\|\.py[co]\)$' -delete
28+
find python -regex '^.*\(__pycache__\|\.py[co]\)$' -delete

0 commit comments

Comments
 (0)