File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
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 && \
You can’t perform that action at this time.
0 commit comments