Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.24 AS builder
FROM golang:1.25 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
4 changes: 2 additions & 2 deletions kopf.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-bookworm as builder
FROM python:3.14-bookworm as builder
ARG DEV_BUILD=false
ARG USER_UID=1000
ARG USER_GID=$USER_UID
Expand All @@ -21,7 +21,7 @@ RUN if $DEV_BUILD ; then \
RUN /home/renku/.local/bin/poetry build -f wheel
RUN env/bin/pip --no-cache-dir install dist/*.whl

FROM python:3.13-slim-bookworm
FROM python:3.14-slim-bookworm
ARG USER_UID=1000
ARG USER_GID=$USER_UID
ENV PROMETHEUS_MULTIPROC_DIR=/prometheus
Expand Down
2 changes: 1 addition & 1 deletion sidecars.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the binary
FROM golang:1.24 AS builder
FROM golang:1.25 AS builder
ARG TARGETOS
ARG TARGETARCH
ARG WSTUNNEL_VERSION="10.4.4"
Expand Down
Loading