Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ FROM python:3.9-slim-bullseye

# Metadata
LABEL maintainer="PaddleOCR FastAPI" \
description="PaddleOCR 3.x with FastAPI - Production Ready" \
description="PaddleOCR 3.x with FastAPI - Production Ready with VL Model Support" \
version="3.x"

WORKDIR /app
Expand Down Expand Up @@ -60,8 +60,8 @@ COPY models ./models
COPY routers ./routers
COPY utils ./utils

# Create directory for model cache
RUN mkdir -p /root/.paddleocr
# Create directory for model cache (both PaddleOCR and PaddleX models)
RUN mkdir -p /root/.paddleocr /root/.paddlex

# Expose port
EXPOSE 8000
Expand Down
Loading