6
mirror of https://github.com/AllSpiceIO/run-wireviz.git synced 2025-04-15 18:08:56 +00:00
run-wireviz/Dockerfile
Shrikanth Upadhayaya 422c1248c3
Initialize
2024-09-17 10:43:09 -04:00

11 lines
216 B
Docker

FROM python:3.11-slim
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"]