Spaces:
Running
Running
File size: 798 Bytes
af08824 0ca6462 af08824 0ca6462 af08824 44b626e 61dc244 9ef67cc 5d5142b 0ca6462 af08824 8e239c7 af08824 0ca6462 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# Use the official Python 3.10.9 image
FROM python:3.10.9
# Copy the current directory contents into the container at /app
COPY . .
# Set the working directory to /app
WORKDIR /app
# Create a cache directory and set permissions
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
# Install dependencies
RUN apt-get update && \
apt-get install -y libgl1-mesa-glx tesseract-ocr
# Install requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN python3 -c "import nltk; nltk.download('averaged_perceptron_tagger_eng', download_dir='/usr/local/nltk_data')"
RUN python3 -c "import nltk; nltk.download('punkt_tab', download_dir='/usr/local/nltk_data')"
EXPOSE 7860
# Start the FastAPI app on port 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |