mirror of
https://github.com/AllSpiceIO/run-wireviz.git
synced 2025-01-02 11:21:39 +00:00
4ea0f3cd78
In some cases, this image was running into this issue: https://github.com/python/cpython/issues/108525, possibly due to using the `slim` base. This commit both updates python to the latest stable (3.13) and siwtches to the `bookworm` base.
11 lines
220 B
Docker
11 lines
220 B
Docker
FROM python:3.13-bookworm
|
|
|
|
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"]
|