Commit 1f2ce39 1 parent ed40e94 commit 1f2ce39 Copy full SHA for 1f2ce39
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Build stage
2
- FROM python:3.12-slim AS builder
2
+ FROM python:3.12-slim-bullseye AS builder
3
3
4
4
# Define build argument with default value
5
5
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements.txt .
26
26
RUN pip install --no-cache-dir -r requirements.txt
27
27
28
28
# Final stage
29
- FROM python:3.12-slim
29
+ FROM python:3.12-slim-bullseye
30
30
31
31
# Add labels for the final image
32
32
LABEL org.opencontainers.image.source="https://github.com/codelion/optillm"
Original file line number Diff line number Diff line change 1
1
# Build stage
2
- FROM python:3.12-slim AS builder
2
+ FROM python:3.12-slim-bullseye AS builder
3
3
4
4
# Define build argument with default value
5
5
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements_proxy_only.txt .
26
26
RUN pip install --no-cache-dir -r requirements_proxy_only.txt
27
27
28
28
# Final stage
29
- FROM python:3.12-slim
29
+ FROM python:3.12-slim-bullseye
30
30
31
31
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
32
32
LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API routing without model serving capabilities"
You can’t perform that action at this time.
0 commit comments