7 lines
151 B
Docker
7 lines
151 B
Docker
FROM python:3.11-slim
|
|
COPY --from=ghcr.io/astral-sh/uv:0.4.20 /uv /bin/uv
|
|
ENV UV_SYSTEM_PYTHON=1
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN uv sync --frozen --no-cache
|