feat(docker): added Dockerfile

This commit is contained in:
etienne-hd
2026-03-06 18:08:35 +01:00
parent b4946264ff
commit 8f3f39c0fc
2 changed files with 13 additions and 0 deletions

3
.dockerignore Normal file
View File

@@ -0,0 +1,3 @@
__pycache__
*.pyc
data/

10
Dockerfile Normal file
View File

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