6
mirror of https://github.com/AllSpiceIO/run-wireviz.git synced 2025-04-17 18:19:16 +00:00
run-wireviz/Dockerfile

11 lines
220 B
Docker
Raw Permalink Normal View History

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"]