mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 19:46:21 +08:00
15 lines
429 B
Docker
15 lines
429 B
Docker
FROM python:3.7
|
|
RUN apt-get update \
|
|
&& apt-get install -qqy --no-install-recommends \
|
|
apt-utils \
|
|
ffmpeg \
|
|
texlive-latex-base \
|
|
texlive-full \
|
|
texlive-fonts-extra \
|
|
sox \
|
|
libcairo2-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
COPY requirements.txt requirements.txt
|
|
RUN python3 -m pip install -r requirements.txt && rm requirements.txt
|
|
ENTRYPOINT ["python", "-m", "manim"]
|