Fix Dockerfile to copy all Python files including pdf_utils and format_converter

This commit is contained in:
Claude
2025-11-15 14:38:54 +00:00
parent e578276d3e
commit e33e9be75a

View File

@@ -12,7 +12,7 @@ COPY requirements.txt .
RUN pip install --upgrade pip && pip install -r requirements.txt RUN pip install --upgrade pip && pip install -r requirements.txt
# Copy backend code # Copy backend code
COPY main.py . COPY *.py .
EXPOSE 8000 EXPOSE 8000