mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
17 lines
462 B
Docker
17 lines
462 B
Docker
FROM public.ecr.aws/lambda/python:3.11
|
|
|
|
WORKDIR /var/task
|
|
|
|
COPY applications/audit_generator/handler/requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY utilities/ utilities/
|
|
COPY backend/ backend/
|
|
COPY applications/ applications/
|
|
COPY domain/ domain/
|
|
COPY datatypes/ datatypes/
|
|
COPY orchestration/ orchestration/
|
|
COPY repositories/ repositories/
|
|
COPY infrastructure/ infrastructure/
|
|
|
|
CMD ["applications.audit_generator.handler.handler"]
|