mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-07 22:03:10 +00:00
* fix: mv recipe to a dir available on the host * docs: add notice for recipe editing on host * fix: replace /tmp/ublue-recipe.yml with /usr/etc/.
36 lines
1.1 KiB
Docker
36 lines
1.1 KiB
Docker
ARG FEDORA_MAJOR_VERSION=37
|
|
ARG BASE_CONTAINER_URL=ghcr.io/ublue-os/silverblue-main
|
|
|
|
FROM ${BASE_CONTAINER_URL}:${FEDORA_MAJOR_VERSION}
|
|
ARG RECIPE
|
|
|
|
# copy over configuration files
|
|
# etc is copied to /usr/etc/ to prevent "merge conflicts"
|
|
# as it is the proper directory for "system" configuration files
|
|
# and /etc/ is for editing by the local admin
|
|
# see issue #28 (https://github.com/ublue-os/startingpoint/issues/28)
|
|
COPY etc /usr/etc
|
|
# uncomment below line if you need to put config files in /usr/
|
|
# COPY usr /usr
|
|
|
|
# copy scripts
|
|
RUN mkdir /tmp/scripts
|
|
COPY scripts /tmp/scripts
|
|
RUN find /tmp/scripts -type f -exec chmod +x {} \;
|
|
|
|
COPY ${RECIPE} /usr/etc/ublue-recipe.yml
|
|
|
|
# yq used in build.sh and the setup-flatpaks recipe to read the recipe.yml
|
|
# copied from the official container image as it's not avaible as an rpm
|
|
COPY --from=docker.io/mikefarah/yq /usr/bin/yq /usr/bin/yq
|
|
|
|
# copy and run the build script
|
|
COPY build.sh /tmp/build.sh
|
|
RUN chmod +x /tmp/build.sh && /tmp/build.sh
|
|
|
|
# clean up and finalize container build
|
|
RUN rm -rf \
|
|
/tmp/* \
|
|
/var/* && \
|
|
ostree container commit
|