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 d7f900c commit ed40e94Copy full SHA for ed40e94
Dockerfile.proxy_only
@@ -1,5 +1,5 @@
1
# Build stage
2
-FROM python:3.12-slim-bullseye AS builder
+FROM python:3.12-slim AS builder
3
4
# Define build argument with default value
5
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements_proxy_only.txt .
26
RUN pip install --no-cache-dir -r requirements_proxy_only.txt
27
28
# Final stage
29
-FROM python:3.12-slim-bullseye
+FROM python:3.12-slim
30
31
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
32
LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API routing without model serving capabilities"
0 commit comments