File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1- LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
2- LABEL org.opencontainers.image.description="OptiLLM full image with model serving and API routing capabilities"
3- LABEL org.opencontainers.image.licenses=Apache-2.0
4-
51# Build stage
62FROM python:3.12-slim AS builder
73
@@ -30,6 +26,11 @@ RUN pip install --no-cache-dir -r requirements.txt
3026# Final stage
3127FROM python:3.12-slim
3228
29+ # Add labels for the final image
30+ LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
31+ LABEL org.opencontainers.image.description="OptiLLM full image with model serving and API routing capabilities"
32+ LABEL org.opencontainers.image.licenses=Apache-2.0
33+
3334# Install curl for the healthcheck
3435RUN apt-get update && apt-get install -y --no-install-recommends \
3536 curl && \
Original file line number Diff line number Diff line change 22
33setup (
44 name = "optillm" ,
5- version = "0.0.32 " ,
5+ version = "0.0.33 " ,
66 packages = find_packages (),
77 py_modules = ['optillm' ],
88 package_data = {
You can’t perform that action at this time.
0 commit comments