You've already forked fedora-bootc
23 lines
659 B
Docker
23 lines
659 B
Docker
ARG FEDORA_BASE=43
|
|
|
|
# Allow build scripts to be referenced without being copied into the final image
|
|
FROM scratch AS ctx
|
|
|
|
COPY build_files /
|
|
COPY /sys_files /sys_files
|
|
COPY cosign.pub /cosign.pub
|
|
|
|
# Base Image
|
|
FROM registry.fedoraproject.org/fedora-toolbox:$FEDORA_BASE
|
|
|
|
### MODIFICATIONS
|
|
## make modifications desired in your image and install packages by modifying the build.sh script
|
|
## the following RUN directive does all the things required to run "build.sh" as recommended.
|
|
|
|
RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
|
|
--mount=type=cache,dst=/var/cache \
|
|
--mount=type=cache,dst=/var/log \
|
|
--mount=type=tmpfs,dst=/tmp \
|
|
/ctx/build.sh
|
|
|