fix docker files for github runner

a
This commit is contained in:
Asankhaya Sharma
2025-02-27 11:10:39 +08:00
parent 39ca7622f4
commit d3c410cba6
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
# Build stage
FROM python:3.12-slim-bullseye AS builder
FROM python:3.12-slim-bookworm AS builder
# Define build argument with default value
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Final stage
FROM python:3.12-slim-bullseye
FROM python:3.12-slim-bookworm
# Add labels for the final image
LABEL org.opencontainers.image.source="https://github.com/codelion/optillm"

View File

@@ -1,5 +1,5 @@
# Build stage
FROM python:3.12-slim-bullseye AS builder
FROM python:3.12-slim-bookworm AS builder
# Define build argument with default value
ARG PORT=8000
@@ -26,7 +26,7 @@ COPY requirements_proxy_only.txt .
RUN pip install --no-cache-dir -r requirements_proxy_only.txt
# Final stage
FROM python:3.12-slim-bullseye
FROM python:3.12-slim-bookworm
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API routing without model serving capabilities"