From 06369b098f1f5f7b9e3f0599cb9bba981c870e5a Mon Sep 17 00:00:00 2001 From: Asankhaya Sharma Date: Tue, 21 Jan 2025 12:25:47 +0800 Subject: [PATCH 1/2] Update Dockerfile --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index bbb9d32e..800357ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,3 @@ -LABEL org.opencontainers.image.source=https://github.com/codelion/optillm -LABEL org.opencontainers.image.description="OptiLLM full image with model serving and API routing capabilities" -LABEL org.opencontainers.image.licenses=Apache-2.0 - # Build stage FROM python:3.12-slim AS builder @@ -30,6 +26,11 @@ RUN pip install --no-cache-dir -r requirements.txt # Final stage FROM python:3.12-slim +# Add labels for the final image +LABEL org.opencontainers.image.source=https://github.com/codelion/optillm +LABEL org.opencontainers.image.description="OptiLLM full image with model serving and API routing 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 && \ From 11978e4f04af836592c10aad2151a0a1e9e30818 Mon Sep 17 00:00:00 2001 From: Asankhaya Sharma Date: Tue, 21 Jan 2025 12:29:59 +0800 Subject: [PATCH 2/2] Update setup.py bump version to test workflow in runner --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 136dea32..2f5fe03a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="optillm", - version="0.0.32", + version="0.0.33", packages=find_packages(), py_modules=['optillm'], package_data={