test dowloand

This commit is contained in:
2026-02-18 14:07:21 +05:00
parent 11780384e0
commit 74b32e869f
8 changed files with 202 additions and 11 deletions

View File

@@ -1,10 +1,12 @@
# syntax=docker/dockerfile:1
FROM python:3.11-slim
FROM python:3.14-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY pyproject.toml .
RUN pip install --no-cache-dir uv \
&& uv venv --yes || true \
&& (uv sync --yes || uv install --yes)
COPY . ./api