Compare commits

..

No commits in common. "e6fcd5fc54469f001615560a0bd88673b1c5dbad" and "a9e510362d302568545093e3c3c4dee9e4629b1d" have entirely different histories.

View file

@ -30,6 +30,7 @@ RUN apt-get update \
python3.12 \ python3.12 \
python3.12-venv \ python3.12-venv \
python3.12-dev \ python3.12-dev \
python3-pip \
libmagic1 \ libmagic1 \
libgl1 \ libgl1 \
libglib2.0-0 \ libglib2.0-0 \
@ -39,10 +40,8 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# --- uv (dependency resolver used by the project) ----------------------- # --- uv (dependency resolver used by the project) -----------------------
# Install via the standalone installer; avoids needing a working system pip RUN python -m pip install --upgrade pip \
# (python3.12 on Ubuntu 22.04 has no `distutils`, which breaks Ubuntu pip). && python -m pip install "uv>=0.4"
RUN curl -LsSf https://astral.sh/uv/install.sh | sh \
&& ln -sf /root/.local/bin/uv /usr/local/bin/uv
WORKDIR /app WORKDIR /app