mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 11:49:34 +00:00
This package is primarily for users of custom or foreign kernels which may have drivers enabled for which the 'firmware' package does not contain the firmware blobs. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
20 lines
544 B
Docker
20 lines
544 B
Docker
FROM linuxkit/alpine:34518265c6cb63ff02074549cc5b64bef40c336f AS build
|
|
RUN apk add --no-cache git
|
|
|
|
# Make sure you also update the FW_COMMIT in ../firmware/Dockerfile
|
|
ENV FW_URL=git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
|
|
ENV FW_COMMIT=65b1c68c63f974d72610db38dfae49861117cae2
|
|
|
|
RUN mkdir -p /out/lib && \
|
|
cd /out/lib && \
|
|
git clone ${FW_URL} firmware && \
|
|
cd firmware && \
|
|
git checkout ${FW_COMMIT} && \
|
|
rm -rf .git
|
|
|
|
FROM scratch
|
|
WORKDIR /
|
|
ENTRYPOINT []
|
|
COPY --from=build /out/lib/ /lib/
|
|
|