2024-12-19 19:52:09 +00:00
|
|
|
FROM python:3.13-bookworm
|
2024-09-13 18:33:11 +00:00
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y graphviz
|
|
|
|
|
|
|
|
COPY requirements.txt /requirements.txt
|
|
|
|
COPY entrypoint.py /entrypoint.py
|
|
|
|
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint.py"]
|