use arm64 for alpr_cache (renamed from alpr_cluster)

This commit is contained in:
Will Freeman
2025-12-04 19:11:03 -07:00
parent 416f1930d9
commit 7b9b0a7244
10 changed files with 25 additions and 173 deletions
+12
View File
@@ -0,0 +1,12 @@
# Use the official AWS Lambda Python 3.14 base image from public ECR
FROM public.ecr.aws/lambda/python:3.14-arm64
# Copy function code
COPY alpr_cache.py ${LAMBDA_TASK_ROOT}
# Install dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Set the CMD to your handler
CMD ["alpr_cache.lambda_handler"]
@@ -0,0 +1,2 @@
boto3
requests