Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/fedora/fedora:43 AS builder
FROM quay.io/fedora/fedora:44 AS builder

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The update to Fedora 44 is incomplete. While the builder stage has been updated to version 44, the runtime stage (line 8) is still using quay.io/fedora/fedora-minimal:43. Both stages should be updated to maintain consistency and ensure the final image uses the intended Fedora version.

RUN dnf install -y golang git-core
RUN mkdir /butane
COPY . /butane
WORKDIR /butane
RUN ./build_for_container

FROM quay.io/fedora/fedora-minimal:43
FROM quay.io/fedora/fedora-minimal:44
COPY --from=builder /butane/bin/container/butane /usr/local/bin/butane
ENTRYPOINT ["/usr/local/bin/butane"]
Loading