samwaugh commited on
Commit
098ed86
·
1 Parent(s): 8698f49

Fix debian

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
- # System deps (for ML libraries - including the missing libgthread)
6
  RUN apt-get update && apt-get install -y --no-install-recommends \
7
  libgl1 \
8
  libgthread-2.0-0 \
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
10
  libcairo2 \
11
  libpango-1.0-0 \
12
  libpangocairo-1.0-0 \
13
- libgdk-pixbuf2.0-0 \
14
  libffi-dev \
15
  && rm -rf /var/lib/apt/lists/*
16
 
 
2
 
3
  WORKDIR /app
4
 
5
+ # System deps (for ML libraries - with corrected package names)
6
  RUN apt-get update && apt-get install -y --no-install-recommends \
7
  libgl1 \
8
  libgthread-2.0-0 \
 
10
  libcairo2 \
11
  libpango-1.0-0 \
12
  libpangocairo-1.0-0 \
13
+ libgdk-pixbuf-xlib-2.0-0 \
14
  libffi-dev \
15
  && rm -rf /var/lib/apt/lists/*
16