File size: 418 Bytes
71d83cf
 
 
bd656af
a17c29c
 
 
 
 
71d83cf
 
 
 
 
 
 
a17c29c
71d83cf
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM manimcommunity/manim:v0.18.1

USER root

# Install required fonts (Roboto + emoji)
RUN apt-get update && apt-get install -y \
    fonts-roboto \
    fonts-noto-color-emoji

COPY requirements.txt .
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt

WORKDIR /app
COPY . /app

# Fix permissions
RUN chown -R manimuser:manimuser /app

USER manimuser
EXPOSE 7860
CMD ["python", "app.py"]