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
4 changes: 2 additions & 2 deletions .github/workflows/e2e/package/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM registry.suse.com/bci/golang:1.24 AS helm
FROM registry.suse.com/bci/golang:1.25 AS helm
RUN zypper -n install git
RUN git -C / clone --branch release-v3.9.0 --depth=1 https://github.com/rancher/helm
RUN make -C /helm

FROM registry.suse.com/bci/golang:1.24
FROM registry.suse.com/bci/golang:1.25

ARG ARCH=amd64
ENV KUBECTL_VERSION=v1.32.0
Expand Down
4 changes: 2 additions & 2 deletions package/Dockerfile-helm-locker
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/golang:1.24 AS builder
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/golang:1.25 AS builder
WORKDIR /usr/src/app
RUN zypper -n install git vim less file curl wget
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN BUILD_TARGET=helm-locker make build

FROM registry.suse.com/bci/bci-micro:15.6
FROM registry.suse.com/bci/bci-micro:15.7
RUN echo 'helmlocker:x:1000:1000::/home/helmlocker:/bin/bash' >> /etc/passwd && \
echo 'helmlocker:x:1000:' >> /etc/group && \
mkdir /home/helmlocker && \
Expand Down
4 changes: 2 additions & 2 deletions package/Dockerfile-helm-project-operator
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Image that provides cross compilation tooling.
FROM --platform=$BUILDPLATFORM rancher/mirrored-tonistiigi-xx:1.5.0 AS xx
FROM --platform=$BUILDPLATFORM rancher/mirrored-tonistiigi-xx:1.6.1 AS xx

FROM --platform=$BUILDPLATFORM registry.suse.com/bci/golang:1.24 AS builder
FROM --platform=$BUILDPLATFORM registry.suse.com/bci/golang:1.25 AS builder
ARG TARGETARCH
ENV BUILD_TARGET="helm-project-operator"
WORKDIR /usr/src/app
Expand Down
4 changes: 2 additions & 2 deletions package/Dockerfile-prometheus-federator
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Image that provides cross compilation tooling.
FROM --platform=$BUILDPLATFORM rancher/mirrored-tonistiigi-xx:1.5.0 AS xx
FROM --platform=$BUILDPLATFORM rancher/mirrored-tonistiigi-xx:1.6.1 AS xx

FROM registry.suse.com/bci/golang:1.24 AS builder
FROM registry.suse.com/bci/golang:1.25 AS builder

# Allow chart version config
ARG TARGETPLATFORM
Expand Down
Loading