Removed pydot dependencies

This commit is contained in:
2022-07-11 13:29:46 +02:00
parent 562d275999
commit c1371a0f89
2 changed files with 3 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
FROM python:3.10-slim-bullseye
RUN apt-get update -y && apt-get install -y --no-install-recommends bash git graphviz graphviz-dev musl-dev build-essential gcc python3-dev libffi-dev poppler-utils zlib1g-dev libjpeg-dev libssl-dev && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN apt-get update -y && apt-get install -y --no-install-recommends bash git graphviz graphviz-dev musl-dev build-essential gcc && apt-get clean && rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]