mirror of
https://github.com/ManInDark/bootc-image.git
synced 2026-01-21 06:54:28 +01:00
18 lines
431 B
Docker
18 lines
431 B
Docker
FROM scratch AS ctx
|
|
COPY build_files /
|
|
|
|
FROM ghcr.io/ublue-os/akmods-nvidia:main-43 AS nvidia
|
|
|
|
FROM ghcr.io/ublue-os/base-main:43
|
|
|
|
RUN rm -r /opt && mkdir /opt
|
|
|
|
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
|
|
--mount=type=bind,from=nvidia,source=/,target=/nvidia \
|
|
--mount=type=cache,dst=/var/cache \
|
|
--mount=type=cache,dst=/var/log \
|
|
--mount=type=tmpfs,dst=/tmp \
|
|
/ctx/build.sh
|
|
|
|
RUN bootc container lint
|