diff --git a/ara-server/Containerfile b/ara-server/Containerfile index c0e1765..4c8f324 100644 --- a/ara-server/Containerfile +++ b/ara-server/Containerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim AS builder +FROM python:3.13-slim AS builder COPY files/requirements.txt /requirements.txt @@ -17,7 +17,7 @@ RUN apt-get update \ && python3 -m pip wheel --no-cache-dir --wheel-dir=/wheels --pre -r /requirements.txt \ && python3 -m pip wheel --no-cache-dir --wheel-dir=/wheels "ara[server]" -FROM python:3.12-slim +FROM python:3.13-slim ENV TZ=UTC diff --git a/metering/Containerfile b/metering/Containerfile index 133248d..9500ca6 100644 --- a/metering/Containerfile +++ b/metering/Containerfile @@ -1,4 +1,4 @@ -ARG PYTHON_VERSION=3.12 +ARG PYTHON_VERSION=3.13 FROM python:${PYTHON_VERSION} ARG USER_ID=45000 diff --git a/tempest/Containerfile b/tempest/Containerfile index b97a858..ae5f723 100644 --- a/tempest/Containerfile +++ b/tempest/Containerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim-bookworm AS pre-gobuild +FROM python:3.13-slim-bookworm AS pre-gobuild RUN apt-get update RUN apt-get install --no-install-recommends -y build-essential @@ -15,7 +15,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build \ -o /opt/octavia-tempest-plugin/test_server.bin \ test_server.go -FROM python:3.12-slim-bookworm +FROM python:3.13-slim-bookworm ARG VERSION=latest