Move to app folder and add Dockerfile

This commit is contained in:
2025-06-23 11:17:22 +01:00
parent 1f59cfecd3
commit 69cf48b7c3
9 changed files with 21 additions and 6 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM infologistix/docker-selenium-python:alpine
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ ./
COPY database.db ./
CMD "python monitor-planning.py"