Spaces:
Sleeping
Sleeping
File size: 302 Bytes
06fae09 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM mcr.microsoft.com/devcontainers/python:3.10
# Install Tesseract OCR
FROM mcr.microsoft.com/devcontainers/python:3.10
RUN apt-get update && apt-get install -y \
tesseract-ocr \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender-dev \
ffmpeg \
&& apt-get clean
|