mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-19 17:03:02 +00:00
16 lines
613 B
Docker
16 lines
613 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 backend/__init__.py backend/__init__.py
|
|
COPY backend/pashub_fetcher/ backend/pashub_fetcher/
|
|
COPY applications/sharepoint_renamer/ applications/sharepoint_renamer/
|
|
COPY scripts/__init__.py scripts/__init__.py
|
|
COPY scripts/rename_sharepoint_files.py scripts/rename_sharepoint_files.py
|
|
COPY scripts/sero_address_list.csv scripts/sero_address_list.csv
|
|
|
|
CMD ["applications.sharepoint_renamer.handler.handler.handler"]
|