mirror of
https://github.com/apple/container.git
synced 2026-09-08 16:55:41 +00:00
10 lines
265 B
Docker
10 lines
265 B
Docker
FROM ghcr.io/apple/backpack-test/kernel-build:latest as build
|
|
COPY . /src
|
|
WORKDIR /src
|
|
RUN make prepare-kernel
|
|
RUN make build-kernel
|
|
|
|
FROM scratch
|
|
LABEL org.opencontainers.image.source=https://github.com/apple/containerization
|
|
COPY --from=build /src/kernel.arm64 /
|