| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- FROM python:3.12-slim AS builder
- # Install system dependencies
- RUN sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
- RUN sed -i 's/security.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
- # 在 builder 和 final stage 的 RUN apt-get update 前,可以尝试更彻底的替换
- RUN cp /etc/apt/sources.list /etc/apt/sources.list.bak && \
- echo "deb https://mirrors.aliyun.com/debian/ bookworm main non-free non-free-firmware" > /etc/apt/sources.list && \
- echo "deb https://mirrors.aliyun.com/debian/ bookworm-updates main non-free non-free-firmware" >> /etc/apt/sources.list && \
- echo "deb https://mirrors.aliyun.com/debian/ bookworm-backports main non-free non-free-firmware" >> /etc/apt/sources.list && \
- echo "deb https://mirrors.aliyun.com/debian-security bookworm-security main non-free non-free-firmware" >> /etc/apt/sources.list
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc g++ musl-dev curl libffi-dev gfortran libopenblas-dev \
- poppler-utils \
- && apt-get clean && rm -rf /var/lib/apt/lists/* \
- && curl --proto '=https' --tlsv1.2 --http1.1 -sSf https://mirrors.ustc.edu.cn/rust-static/rustup/rustup-init.sh | sh -s -- -y
- # && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- # Add Rust to PATH
- ENV PATH="/root/.cargo/bin:${PATH}"
- # Create the /app/py directory
- RUN mkdir -p /app/py
- WORKDIR /app/py
- COPY pyproject.toml ./
- RUN pip install -e ".[core]" && \
- pip install gunicorn uvicorn pydantic
- # Optionally, if you want gunicorn and uvicorn explicitly installed, you can
- # either list them under [project] in `pyproject.toml` or install them here:
- RUN pip install --no-cache-dir gunicorn uvicorn
- # Create the final image
- FROM python:3.12-slim
- RUN sed -i 's/deb.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
- RUN sed -i 's/security.debian.org/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
- # 在 builder 和 final stage 的 RUN apt-get update 前,可以尝试更彻底的替换
- RUN cp /etc/apt/sources.list /etc/apt/sources.list.bak && \
- echo "deb https://mirrors.aliyun.com/debian/ bookworm main non-free non-free-firmware" > /etc/apt/sources.list && \
- echo "deb https://mirrors.aliyun.com/debian/ bookworm-updates main non-free non-free-firmware" >> /etc/apt/sources.list && \
- echo "deb https://mirrors.aliyun.com/debian/ bookworm-backports main non-free non-free-firmware" >> /etc/apt/sources.list && \
- echo "deb https://mirrors.aliyun.com/debian-security bookworm-security main non-free non-free-firmware" >> /etc/apt/sources.list
- # Minimal runtime deps
- RUN apt-get update && apt-get install -y --no-install-recommends \
- curl poppler-utils \
- && apt-get clean && rm -rf /var/lib/apt/lists/*
- # Copy the built environment from builder to final image
- # (If you want a fully self-contained environment, copy /usr/local)
- COPY --from=builder /usr/local /usr/local
- WORKDIR /app
- # Copy the rest of your source code
- COPY . /app
- # Expose environment variables and port
- ARG R2R_PORT=8000 R2R_HOST=0.0.0.0
- ENV R2R_PORT=$R2R_PORT R2R_HOST=$R2R_HOST
- EXPOSE $R2R_PORT
- # Launch the app
- CMD ["sh", "-c", "uvicorn core.main.app_entry:app --host $R2R_HOST --port $R2R_PORT"]
|