Skip to content

Commit 4cc48a2

Browse files
authored
Merge pull request #146 from codelion/codelion-patch-1
Update Dockerfile
2 parents 11d6e6d + b25f31c commit 4cc48a2

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
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 && \

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="optillm",
5-
version="0.0.32",
5+
version="0.0.33",
66
packages=find_packages(),
77
py_modules=['optillm'],
88
package_data={

0 commit comments

Comments
 (0)