fina/Dockerfile

33 lines
677 B
Text
Raw Permalink Normal View History

2025-12-26 00:52:56 +00:00
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
tesseract-ocr \
tesseract-ocr-eng \
tesseract-ocr-ron \
poppler-utils \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first for better caching
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY app/ ./app/
COPY run.py .
COPY migrations/ ./migrations/
# Create necessary directories with proper permissions
RUN mkdir -p data uploads instance && \
chmod 755 data uploads instance
# Expose port
EXPOSE 5103
# Run the application
CMD ["python", "run.py"]