Skip to content

Commit d7f900c

Browse files
committed
minimal docker for proxy
1 parent 3f197f3 commit d7f900c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Dockerfile.proxy_only

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM python:3.12-slim AS builder
2+
FROM python:3.12-slim-bullseye AS builder
33

44
# Define build argument with default value
55
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements_proxy_only.txt .
2626
RUN pip install --no-cache-dir -r requirements_proxy_only.txt
2727

2828
# Final stage
29-
FROM python:3.12-slim
29+
FROM python:3.12-slim-bullseye
3030

3131
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
3232
LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API routing without model serving capabilities"

requirements_proxy_only.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ azure.identity
55
litellm
66
requests
77
cerebras_cloud_sdk
8+
numpy
9+
networkx
10+
z3-solver
11+
sympy

0 commit comments

Comments
 (0)