File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM python:3.11 -slim AS deps
1+ FROM python:3.14 -slim AS deps
22
33WORKDIR /app
44
@@ -15,7 +15,7 @@ COPY pyproject.toml pdm.lock LICENSE /app/
1515
1616RUN pdm install --frozen-lockfile --prod --no-editable --no-self
1717
18- FROM python:3.11 -slim AS model-download
18+ FROM python:3.14 -slim AS model-download
1919
2020COPY --from=deps /app/.venv /app/.venv
2121
@@ -33,7 +33,7 @@ open_clip.create_model_and_transforms(
3333print("Model weights cached." )
3434EOF
3535
36- FROM python:3.11 -slim AS runtime
36+ FROM python:3.14 -slim AS runtime
3737
3838RUN apt-get update && apt-get install -y --no-install-recommends \
3939 libglib2.0-0 \
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "embedding-api"
33version = " 0.1.0"
44description = " CPU-optimized image embedding API using OpenCLIP"
55readme = " README.md"
6- requires-python = " ==3.11 .*"
6+ requires-python = " ==3.14 .*"
77dependencies = [
88 " fastapi>=0.115.0" ,
99 " uvicorn[standard]>=0.30.0" ,
You can’t perform that action at this time.
0 commit comments