feat: 모바일 반응형 + 변환 타임아웃 설정

This commit is contained in:
root
2026-04-23 02:33:57 +09:00
parent 248ac1deea
commit 4af1279a08
9 changed files with 967 additions and 1022 deletions

View File

@@ -9,8 +9,6 @@ RUN apt-get update && apt-get install -y \
libxext6 \
libxrender1 \
libgl1 \
libgles2 \
libegl1 \
wget \
curl \
&& rm -rf /var/lib/apt/lists/*
@@ -19,8 +17,9 @@ WORKDIR /app
COPY requirements.txt .
# PaddlePaddle CPU — PyPI 공식 서버
RUN pip install --no-cache-dir paddlepaddle==3.0.0
# PaddlePaddle CPU (AMD64) — paddleocr 3.x 호환
RUN pip install --no-cache-dir paddlepaddle==3.0.0 \
-i https://pypi.tuna.tsinghua.edu.cn/simple
# 나머지 패키지
RUN pip install --no-cache-dir -r requirements.txt