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