mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-01 17:45:28 +08:00
Fixes #12266 Dockerfile.deps still referenced `tika-server-standard-3.0.0.jar` even after the project moved to Tika 3.2.3 for security reasons. This caused Docker builds to fail due to a version mismatch and missing artifact. Changes: - Update Dockerfile.deps to consistently use Tika 3.2.3 No functional changes beyond dependency alignment. Co-authored-by: Liu An <asiro@qq.com>
11 lines
478 B
Docker
11 lines
478 B
Docker
# This builds an image that contains the resources needed by Dockerfile
|
|
#
|
|
FROM scratch
|
|
|
|
# Copy resources downloaded via download_deps.py
|
|
COPY chromedriver-linux64-121-0-6167-85 chrome-linux64-121-0-6167-85 cl100k_base.tiktoken libssl1.1_1.1.1f-1ubuntu2_amd64.deb libssl1.1_1.1.1f-1ubuntu2_arm64.deb tika-server-standard-3.2.3.jar tika-server-standard-3.2.3.jar.md5 libssl*.deb uv-x86_64-unknown-linux-gnu.tar.gz /
|
|
|
|
COPY nltk_data /nltk_data
|
|
|
|
COPY huggingface.co /huggingface.co
|