Eliminar archivos y configuraciones obsoletas de Docker y scripts en el proyecto onedrive

This commit is contained in:
2025-12-07 11:45:58 -05:00
parent 950a1704ee
commit 24af1dff01
17 changed files with 60 additions and 112 deletions

10
cron/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY script.py .
CMD ["python", "script.py"]