minimal docker for proxy

This commit is contained in:
Asankhaya Sharma
2025-02-27 10:02:02 +08:00
parent 3f197f3dde
commit d7f900c9b3
2 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
# Build stage
FROM python:3.12-slim AS builder
FROM python:3.12-slim-bullseye AS builder
# Define build argument with default value
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements_proxy_only.txt .
RUN pip install --no-cache-dir -r requirements_proxy_only.txt
# Final stage
FROM python:3.12-slim
FROM python:3.12-slim-bullseye
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API routing without model serving capabilities"

View File

@@ -5,3 +5,7 @@ azure.identity
litellm
requests
cerebras_cloud_sdk
numpy
networkx
z3-solver
sympy