Vi0509 commited on
Commit
53a89c1
·
verified ·
1 Parent(s): c9d0f73

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -4
Dockerfile CHANGED
@@ -1,9 +1,10 @@
1
- FROM python:3.11-slim
2
 
3
- WORKDIR /app
4
-
5
- RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg libsndfile1 && rm -rf /var/lib/apt/lists/*
6
 
 
7
  COPY requirements.txt .
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
 
1
+ FROM python:3.10-slim
2
 
3
+ RUN apt-get update && apt-get install -y --no-install-recommends \
4
+ ffmpeg tesseract-ocr tesseract-ocr-eng \
5
+ && rm -rf /var/lib/apt/lists/*
6
 
7
+ WORKDIR /app
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt
10