mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
14 lines
481 B
Docker
14 lines
481 B
Docker
FROM public.ecr.aws/lambda/python:3.11
|
|
|
|
WORKDIR /var/task
|
|
|
|
COPY applications/sharepoint_renamer/handler/requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY utils/ utils/
|
|
COPY utilities/ utilities/
|
|
COPY backend/__init__.py backend/__init__.py
|
|
COPY backend/pashub_fetcher/ backend/pashub_fetcher/
|
|
COPY orchestration/ orchestration/
|
|
COPY applications/sharepoint_renamer/ applications/sharepoint_renamer/
|
|
CMD ["applications.sharepoint_renamer.handler.handler"]
|