FROM python:3.13-slim | |
# Install system dependencies | |
RUN apt-get update && apt-get upgrade -y && \ | |
apt-get install -y build-essential git nano cmake libzbar0 libgl1 && \ | |
pip install --upgrade pip | |
# Install UV package manager | |
RUN pip install uv | |
# Copy requirements file | |
COPY requirements.txt . | |
# Install dependencies | |
RUN uv pip install -r requirements.txt --system | |