Skip to content

Commit

Permalink
chore(deps): update python docker tag to v3.13
Browse files Browse the repository at this point in the history
Signed-off-by: Renovate Bot <[email protected]>
  • Loading branch information
renovate[bot] authored Oct 8, 2024
1 parent 7eca261 commit 1dee57e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ansible-lint/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim AS builder
FROM python:3.13-slim AS builder

COPY files/requirements.txt /requirements.txt

Expand All @@ -10,7 +10,7 @@ RUN apt-get update \
&& python3 -m pip install --no-cache-dir -U 'pip==24.2' \
&& python3 -m pip wheel --no-cache-dir --wheel-dir=/wheels --pre -r /requirements.txt

FROM python:3.12-slim
FROM python:3.13-slim

COPY --from=builder /wheels /wheels
COPY files/* /
Expand Down
4 changes: 2 additions & 2 deletions ara-server/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim AS builder
FROM python:3.13-slim AS builder

COPY files/requirements.txt /requirements.txt

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion metering/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.12
ARG PYTHON_VERSION=3.13
FROM python:${PYTHON_VERSION}

ARG USER_ID=45000
Expand Down
4 changes: 2 additions & 2 deletions tempest/Containerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

Expand Down

0 comments on commit 1dee57e

Please sign in to comment.