From a0a2f5c95f08ae1911f3746dd9eb9ee123a44c8f Mon Sep 17 00:00:00 2001 From: Averagess <45748163+Averagess@users.noreply.github.com> Date: Thu, 9 Feb 2023 21:46:55 +0200 Subject: [PATCH] Created Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4a4cd4b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3 + +WORKDIR /usr/src/git-sim + +RUN apt update + +RUN apt -y install build-essential python3-dev libcairo2-dev libpango1.0-dev ffmpeg + +RUN pip3 install manim + +RUN pip3 install git-sim + +ENTRYPOINT [ "git-sim" ] \ No newline at end of file