diff --git a/Containerfile.wasp b/Containerfile.wasp index 555633c6..d76cfde0 100644 --- a/Containerfile.wasp +++ b/Containerfile.wasp @@ -1,5 +1,5 @@ # Builder stage -FROM fedora:38 as builder +FROM fedora:42 as builder # Install necessary tools for building RUN dnf update -y && dnf install -y \ @@ -36,4 +36,4 @@ RUN useradd -u 1001 -r -s /sbin/nologin -d /app/wasp wasp USER 1001 # Set the entrypoint to the binary -ENTRYPOINT ["/app/wasp"] \ No newline at end of file +ENTRYPOINT ["/app/wasp"] diff --git a/go.mod b/go.mod index 812154f9..2664c5ee 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/openshift-virtualization/wasp-agent -go 1.21 +go 1.24 require ( k8s.io/apimachinery v0.28.12