mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
18 lines
473 B
Docker
18 lines
473 B
Docker
FROM public.ecr.aws/lambda/python:3.11
|
|
|
|
WORKDIR /var/task
|
|
|
|
COPY applications/magic_plan/handler/requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# COPY utils/ utils/
|
|
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.magic_plan.handler.handler"]
|