You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM python:3.12-slim
-
- # Install system dependencies
- RUN apt-get update && apt-get install -y \
- git \
- curl \
- build-essential \
- pkg-config \
- libssl-dev \
- ffmpeg \
- libsm6 \
- libxext6 \
- && rm -rf /var/lib/apt/lists/*
-
- # Install Rust (required for Dora)
- RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- ENV PATH="/root/.cargo/bin:${PATH}"
-
- # Install uv
- RUN pip install --no-cache-dir uv
-
- # Install latest Dora
- RUN pip install --no-cache-dir dora-rs-cli
-
- # Create a working directory
- WORKDIR /app
-
- # Set environment variables
- ENV PYTHONUNBUFFERED=1
-
- # Default command when container starts
- CMD ["bash"]
|