Skip to content

Commit 98d59a4

Browse files
authored
Merge pull request #166 from codelion/fix-dockerfile
fix docker files for github runner
2 parents 39ca762 + 88649c9 commit 98d59a4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM python:3.12-slim-bullseye AS builder
2+
FROM python:3.12-slim-bookworm AS builder
33

44
# Define build argument with default value
55
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements.txt .
2626
RUN pip install --no-cache-dir -r requirements.txt
2727

2828
# Final stage
29-
FROM python:3.12-slim-bullseye
29+
FROM python:3.12-slim-bookworm
3030

3131
# Add labels for the final image
3232
LABEL org.opencontainers.image.source="https://github.com/codelion/optillm"

Dockerfile.proxy_only

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM python:3.12-slim-bullseye AS builder
2+
FROM python:3.12-slim-bookworm AS builder
33

44
# Define build argument with default value
55
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements_proxy_only.txt .
2626
RUN pip install --no-cache-dir -r requirements_proxy_only.txt
2727

2828
# Final stage
29-
FROM python:3.12-slim-bullseye
29+
FROM python:3.12-slim-bookworm
3030

3131
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
3232
LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API routing without model serving capabilities"

optillm/__init__.py

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

44
# Version information
5-
__version__ = "0.1.5"
5+
__version__ = "0.1.6"
66

77
# Get the path to the root optillm.py
88
spec = util.spec_from_file_location(

setup.py

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

44
setup(
55
name="optillm",
6-
version="0.1.5",
6+
version="0.1.6",
77
packages=find_packages(include=['optillm', 'optillm.*']), # This ensures all subpackages are included
88
py_modules=['optillm'],
99
package_data={

0 commit comments

Comments
 (0)