Skip to content

Commit 06369b0

Browse files
authored
Update Dockerfile
1 parent 11d6e6d commit 06369b0

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
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
62
FROM python:3.12-slim AS builder
73

@@ -30,6 +26,11 @@ RUN pip install --no-cache-dir -r requirements.txt
3026
# Final stage
3127
FROM 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
3435
RUN apt-get update && apt-get install -y --no-install-recommends \
3536
curl && \

0 commit comments

Comments
 (0)