Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Commit fb0d20d

Browse files
committed
remove dependencies and packaged lambda zips. Packages will now be built by taskcat
1 parent d90b645 commit fb0d20d

File tree

280 files changed

+17
-42556
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

280 files changed

+17
-42556
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
functions/packages
12
.idea
23
.DS_Store
-3.46 MB
Binary file not shown.
-6.16 KB
Binary file not shown.
-37.1 KB
Binary file not shown.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM lambci/lambda:build-python3.7
2+
3+
COPY . .
4+
5+
RUN mkdir -p python/ && \
6+
pip install -t python/ -r ./requirements.txt && \
7+
find . -name "*.dist-info" -exec rm -rf {} \; | true && \
8+
find . -name "*.egg-info" -exec rm -rf {} \; | true && \
9+
find . -name "*.pth" -exec rm -rf {} \; | true && \
10+
find . -name "__pycache__" -exec rm -rf {} \; | true && \
11+
rm Dockerfile requirements.txt && \
12+
find . -exec touch -t 202007010000.00 {} + && \
13+
zip -X -r lambda.zip ./
14+
15+
CMD mkdir -p /output/ && mv lambda.zip /output/

functions/source/CreateSSHKey/THIRD_PARTY_LICENSES.md

Lines changed: 0 additions & 1427 deletions
This file was deleted.
-26.2 KB
Binary file not shown.
Binary file not shown.

functions/source/CreateSSHKey/cffi-1.14.2.dist-info/INSTALLER

Lines changed: 0 additions & 1 deletion
This file was deleted.

functions/source/CreateSSHKey/cffi-1.14.2.dist-info/LICENSE

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)