This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
django_action/Dockerfile
2020-10-20 10:49:17 +02:00

7 lines
247 B
Docker

FROM python:3.9.0-windowsservercore
RUN setup.exe -q -n -P openssh git graphviz gcc
RUN python -m pip install --upgrade pip setuptools wheel pyparsing pydot django-extensions django
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]