Bentham commited on
Commit
af2304f
·
verified ·
1 Parent(s): 86f5d36

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -1,8 +1,12 @@
1
  # Utiliser l'image Python officielle
2
  FROM python:3.10-slim
3
 
4
- # Installer pandoc et ses dépendances via apt
5
- RUN apt-get update && apt-get install -y pandoc libgl1-mesa-glx antiword
 
 
 
 
6
 
7
  # Définir le répertoire de travail
8
  WORKDIR /app
 
1
  # Utiliser l'image Python officielle
2
  FROM python:3.10-slim
3
 
4
+ # Installer pandoc, antiword et ses dépendances via apt
5
+ RUN apt-get update && apt-get install -y \
6
+ pandoc \
7
+ libgl1-mesa-glx \
8
+ antiword \
9
+ && rm -rf /var/lib/apt/lists/*
10
 
11
  # Définir le répertoire de travail
12
  WORKDIR /app