We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc57ee1 commit c4581dbCopy full SHA for c4581db
docker/Dockerfile
@@ -1,5 +1,5 @@
1
# Stage 1: Builder stage
2
-FROM python:3.13-slim AS builder
+FROM python:3.12-slim AS builder
3
4
# Install necessary OS packages
5
RUN apt-get update && apt-get install -y --no-install-recommends \
@@ -19,7 +19,7 @@ RUN pip install --no-cache-dir -e .
19
RUN pip install --no-cache-dir openai>=1.0.0 backoff
20
21
# Stage 2: Final stage
22
-FROM python:3.13-slim
+FROM python:3.12-slim
23
24
WORKDIR /app
25
0 commit comments