Skip to content
Open
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
2 changes: 1 addition & 1 deletion hostplumber/pkg/ovs-docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.16
FROM alpine:3.22.2

Choose a reason for hiding this comment

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

Alpine version compatibility risk

The upgrade from Alpine 3.16 to 3.22.2 introduces significant compatibility risks that could break the DPDK 21.11.3 and Open vSwitch 2.17.5 build process. Alpine 3.22 uses Linux kernel 6.12, updated build toolchains (LLVM 20, GCC updates), and has stricter musl libc compatibility requirements. The legacy DPDK 21.11.3 (from 2021) and Open vSwitch 2.17.5 may fail to compile or run correctly with these newer dependencies. Consider using Alpine 3.19 instead, which provides security updates while maintaining better compatibility with these older versions, or update DPDK/OVS to versions compatible with Alpine 3.22.

Code suggestion
Check the AI-generated fix before applying
Suggested change
FROM alpine:3.22.2
FROM alpine:3.19

Code Review Run #f0f316


Should Bito avoid suggestions like this for future reviews? (Manage Rules)

  • Yes, avoid them


RUN apk update && apk upgrade
RUN apk add --no-cache bash
Expand Down