theminji commited on
Commit
62a7208
·
verified ·
1 Parent(s): 9a762aa

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,6 +1,5 @@
1
  FROM python:3.9-slim
2
 
3
- # Install system dependencies required for Manim and building pycairo
4
  RUN apt-get update && apt-get install -y \
5
  build-essential \
6
  pkg-config \
@@ -10,15 +9,16 @@ RUN apt-get update && apt-get install -y \
10
  libpango1.0-dev \
11
  meson \
12
  ninja-build \
 
 
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
  WORKDIR /app
16
 
17
- # Copy the requirements file and install Python dependencies
18
  COPY requirements.txt .
 
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
- # Copy the rest of the application code
22
  COPY . .
23
 
24
  EXPOSE 7860
 
1
  FROM python:3.9-slim
2
 
 
3
  RUN apt-get update && apt-get install -y \
4
  build-essential \
5
  pkg-config \
 
9
  libpango1.0-dev \
10
  meson \
11
  ninja-build \
12
+ texlive \
13
+ texlive-latex-extra \
14
  && rm -rf /var/lib/apt/lists/*
15
 
16
  WORKDIR /app
17
 
 
18
  COPY requirements.txt .
19
+
20
  RUN pip install --no-cache-dir -r requirements.txt
21
 
 
22
  COPY . .
23
 
24
  EXPOSE 7860