Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile.proxy_only
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
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"
LABEL org.opencontainers.image.licenses=Apache-2.0

# Build stage
FROM python:3.12-slim AS builder

Expand Down Expand Up @@ -30,6 +26,10 @@ RUN pip install --no-cache-dir -r requirements_proxy_only.txt
# Final stage
FROM python:3.12-slim

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"
LABEL org.opencontainers.image.licenses=Apache-2.0

# Install curl for the healthcheck
RUN apt-get update && apt-get install -y --no-install-recommends \
curl && \
Expand Down