Model/backend/address2UPRN/Dockerfile
2026-02-03 12:18:21 +00:00

7 lines
116 B
Docker

FROM public.ecr.aws/lambda/python:3.10
# Copy function code
COPY main.py .
# Set the handler
CMD ["main.handler"]