mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-24 22:15:02 +00:00
16 lines
555 B
Docker
16 lines
555 B
Docker
ARG FEDORA_MAJOR_VERSION=37
|
|
|
|
FROM quay.io/fedora-ostree-desktops/silverblue:${FEDORA_MAJOR_VERSION}
|
|
# See https://pagure.io/releng/issue/11047 for final location
|
|
|
|
COPY etc /etc
|
|
|
|
COPY ublue-firstboot /usr/bin
|
|
|
|
RUN rpm-ostree override remove firefox firefox-langpacks && \
|
|
rpm-ostree install distrobox gnome-tweaks just && \
|
|
sed -i 's/#AutomaticUpdatePolicy.*/AutomaticUpdatePolicy=stage/' /etc/rpm-ostreed.conf && \
|
|
systemctl enable rpm-ostreed-automatic.timer && \
|
|
systemctl enable flatpak-automatic.timer && \
|
|
ostree container commit
|