PauloFN commited on
Commit
2877363
·
1 Parent(s): 7065ac6

added libs

Browse files
Files changed (2) hide show
  1. Dockerfile +9 -1
  2. requirements.txt +1 -1
Dockerfile CHANGED
@@ -11,7 +11,15 @@ ENV PYTHONUNBUFFERED 1
11
  # This is where your application's code will live.
12
  WORKDIR /app
13
 
14
- RUN apt-get update && apt-get install -y libgl1 libglib2.0-0
 
 
 
 
 
 
 
 
15
 
16
  # Copy the requirements file into the container at /app.
17
  # This is done as a separate step to take advantage of Docker's layer caching.
 
11
  # This is where your application's code will live.
12
  WORKDIR /app
13
 
14
+ RUN apt-get update && apt-get install -y \
15
+ libgl1 \
16
+ libglib2.0-0 \
17
+ libsm6 \
18
+ libxext6 \
19
+ libxrender-dev \
20
+ ffmpeg \
21
+ libjpeg-dev \
22
+ libpng-dev
23
 
24
  # Copy the requirements file into the container at /app.
25
  # This is done as a separate step to take advantage of Docker's layer caching.
requirements.txt CHANGED
@@ -34,7 +34,7 @@ matplotlib==3.10.5
34
  mpmath==1.3.0
35
  networkx==3.5
36
  numpy==2.2.6
37
- opencv-python-headless==4.12.0.88
38
  packaging==25.0
39
  pillow==11.3.0
40
  polars==1.32.3
 
34
  mpmath==1.3.0
35
  networkx==3.5
36
  numpy==2.2.6
37
+ opencv-python==4.12.0.88
38
  packaging==25.0
39
  pillow==11.3.0
40
  polars==1.32.3