Skip to content
Merged
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 Containerfile.wasp
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down Expand Up @@ -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"]
ENTRYPOINT ["/app/wasp"]
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/openshift-virtualization/wasp-agent

go 1.21
go 1.24

require (
k8s.io/apimachinery v0.28.12
Expand Down