8 lines
346 B
Docker
8 lines
346 B
Docker
FROM python:3.10-slim
|
|
ENV PYTHONDONTWRITEBYTECODE=1
|
|
USER root
|
|
RUN apt-get update && apt-get install -y time git
|
|
ENV VIRTUAL_ENV=/usr/local
|
|
RUN pip install uv && uv venv
|
|
RUN uv pip install --no-cache-dir -U pip setuptools GitPython transformers "ruff==0.1.5" urllib3
|
|
RUN apt-get install -y jq curl && apt-get clean && rm -rf /var/lib/apt/lists/* |