mirror of
https://github.com/etienne-hd/lbc-finder.git
synced 2026-04-14 21:45:36 +02:00
10 lines
160 B
Docker
10 lines
160 B
Docker
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"] |