Docker config

This commit is contained in:
Ian Renton
2026-08-05 20:14:30 +01:00
parent c2ecef1003
commit 4f8f748d88
11 changed files with 59 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8080
CMD ["python3", "spothole.py"]