You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Description
<!--- Please describe what this PR is going to change -->
- Go to 1.24. Containerd to v2.1.3. Runc to v1.3.0. Docker to 28.2.2.
- Slimmed down hook-docker and got us back about 20Mb. This was needed
as the new version of docker was larger than the previous and hook-udev
increased the overall size too.
- Fixed issue with `dhcp.sh` script and udev interface naming for
Raspberry PI 4b machines and other machines that udev names the
interface as `eth` instead of `en`.
- Slimmed down hook-bootkit by using scratch.
## Why is this needed
<!--- Link to issue you have raised -->
Fixes: #
## How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran
to -->
<!--- see how your change affects other areas of the code, etc. -->
## How are existing users impacted? What migration steps/scripts do we
need?
<!--- Fixes a bug, unblocks installation, removes a component of the
stack etc -->
<!--- Requires a DB migration script, etc. -->
## Checklist:
I have:
- [ ] updated the documentation and/or roadmap (if required)
- [ ] added unit or e2e tests
- [ ] provided instructions on how to upgrade
RUN make binaries EXTRA_FLAGS="-buildmode pie" EXTRA_LDFLAGS='-w -s -extldflags "-fno-PIC -static"' BUILDTAGS="static_build no_devmapper"
21
+
RUN make binaries STATIC=1 EXTRA_FLAGS="-buildmode pie" EXTRA_LDFLAGS='-w -s -extldflags "-fno-PIC -static"' BUILDTAGS="static_build no_devmapper"
22
22
23
23
# install nerdctl
24
24
RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then ARCHITECTURE=amd64; elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then ARCHITECTURE=arm64; else ARCHITECTURE=amd64; fi \
0 commit comments