mirror of
https://github.com/etienne-hd/lbc-finder.git
synced 2026-04-19 15:52:40 +02:00
feat(docker): added Dockerfile
This commit is contained in:
3
.dockerignore
Normal file
3
.dockerignore
Normal file
@@ -0,0 +1,3 @@
|
||||
__pycache__
|
||||
*.pyc
|
||||
data/
|
||||
10
Dockerfile
Normal file
10
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user