From 353351a27f834549f84f38bca313f79c8056280b Mon Sep 17 00:00:00 2001 From: Asankhaya Sharma Date: Tue, 21 Jan 2025 12:28:29 +0800 Subject: [PATCH] Update Dockerfile.proxy_only --- Dockerfile.proxy_only | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.proxy_only b/Dockerfile.proxy_only index e5db1708..b863ee90 100644 --- a/Dockerfile.proxy_only +++ b/Dockerfile.proxy_only @@ -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 @@ -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 && \