14 lines
288 B
Docker
14 lines
288 B
Docker
ARG FEDORA_MAJOR_VERSION=41
|
|
|
|
FROM quay.io/fedora-ostree-desktops/silverblue:${FEDORA_MAJOR_VERSION}
|
|
|
|
COPY vconsole.conf /etc/vconsole.conf
|
|
|
|
RUN rpm-ostree install \
|
|
vim
|
|
|
|
RUN rpm-ostree override remove firefox firefox-langpacks
|
|
|
|
RUN rpm-ostree cleanup -m && \
|
|
ostree container commit
|