In place fixes

This commit is contained in:
James Jennett-Wheeler 2025-06-23 15:28:36 +01:00
parent 02146d6ab5
commit a5cca5f9c7
4 changed files with 13 additions and 1 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/driver
database.db

View File

@ -5,4 +5,6 @@ WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ ./
COPY app/ ./
CMD ["python3", "-u", "./monitor-planning.py"]

9
compose.yaml Normal file
View File

@ -0,0 +1,9 @@
services:
monitor-planning:
build:
context: .
dockerfile: ./Dockerfile
restart: unless-stopped
volumes:
- ./database.db:/usr/src/app/database.db

Binary file not shown.