mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-05-18 14:04:47 +02:00
13 lines
302 B
Docker
13 lines
302 B
Docker
# 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"]
|