Spaces:
Running
Running
Update Dockerfile
Browse files- 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 |
-
|
6 |
-
|
|
|
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
|