update clustering code to segment regions, still cluster until next release for backward compat

This commit is contained in:
Will Freeman
2024-12-23 19:30:14 -08:00
parent 6f50bd32b7
commit be88a7950c
7 changed files with 116 additions and 20 deletions
+12
View File
@@ -0,0 +1,12 @@
# Use the official AWS Lambda Python 3.9 base image
FROM amazon/aws-lambda-python:3.9
# Copy function code
COPY alpr_clusters.py ${LAMBDA_TASK_ROOT}
# Install dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Set the CMD to your handler
CMD ["alpr_clusters.lambda_handler"]