File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# BUILD STAGE
2- FROM golang:1.24 AS builder
2+ FROM golang:1.26 AS builder
33
44LABEL maintainer="LitmusChaos"
55
@@ -17,12 +17,14 @@ RUN CGO_ENABLED=0 go build -o /output/subscriber -v
1717
1818# Packaging stage
1919# Use RedHat UBI minimal image as base
20- FROM registry.access.redhat.com/ubi9/ubi-minimal:9.6
20+ FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
2121
2222LABEL maintainer="LitmusChaos"
2323
2424ENV APP_DIR="/litmus"
2525
26+ RUN dnf update -y && dnf clean all
27+
2628COPY --from=builder /output/subscriber $APP_DIR/
2729RUN chown 65534:0 $APP_DIR/subscriber && chmod 755 $APP_DIR/subscriber
2830
Original file line number Diff line number Diff line change 11module subscriber
22
3- go 1.24 .0
3+ go 1.26 .0
44
55require (
66 github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24
You can’t perform that action at this time.
0 commit comments