mirror of
https://github.com/etienne-hd/lbc-finder.git
synced 2026-04-06 01:34:32 +02:00
14 lines
284 B
Docker
14 lines
284 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt && rm requirements.txt
|
|
|
|
COPY lbc-finder /app
|
|
|
|
COPY docker-entrypoint.sh /
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
CMD ["python", "main.py"] |