MJobe commited on
Commit
0945284
1 Parent(s): d1d902b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -1,9 +1,11 @@
1
  # Use the official Python 3.9 image
2
  FROM python:3.9
3
 
 
4
  RUN apt-get update && apt-get install -y \
5
- tesseract-ocr-all \
6
- && rm -rf /var/lib/apt/lists/*
 
7
 
8
  # Set the working directory to /code
9
  WORKDIR /code
 
1
  # Use the official Python 3.9 image
2
  FROM python:3.9
3
 
4
+ # Install tesseract and ffmpeg
5
  RUN apt-get update && apt-get install -y \
6
+ tesseract-ocr-all \
7
+ ffmpeg \
8
+ && rm -rf /var/lib/apt/lists/*
9
 
10
  # Set the working directory to /code
11
  WORKDIR /code