7 lines
252 B
Docker
7 lines
252 B
Docker
FROM ubuntu:latest
|
|
RUN apt update && apt install -y bash git openssh-client graphviz gcc
|
|
RUN python -m pip install --upgrade pip setuptools wheel pyparsing pydot django-extensions django
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|