WebashalarForML commited on
Commit
bbb7f50
·
verified ·
1 Parent(s): 31412d2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -3
Dockerfile CHANGED
@@ -12,10 +12,12 @@ ENV TRANSFORMERS_CACHE=/app/cache \
12
  # Set the working directory
13
  WORKDIR /app
14
 
15
- # Install required system dependencies
16
  RUN apt-get update && apt-get install -y \
17
- libmagic1 \
18
- libgl1 \
 
 
19
  file \
20
  && rm -rf /var/lib/apt/lists/*
21
 
 
12
  # Set the working directory
13
  WORKDIR /app
14
 
15
+ # Install system dependencies
16
  RUN apt-get update && apt-get install -y \
17
+ libglib2.0-0 \
18
+ libsm6 \
19
+ libxrender1 \
20
+ libxext6 \
21
  file \
22
  && rm -rf /var/lib/apt/lists/*
23