mirror of
https://github.com/andersrh/Podmanfiles.git
synced 2026-05-17 20:38:01 +00:00
18 lines
No EOL
1.4 KiB
Docker
18 lines
No EOL
1.4 KiB
Docker
FROM registry.fedoraproject.org/fedora:38
|
|
|
|
RUN dnf update -y && dnf clean packages
|
|
RUN dnf install -y fish htop nano firejail && dnf clean packages
|
|
RUN dnf install -y libnotify nss && dnf clean packages
|
|
RUN dnf install -y --allowerasing bash bc curl diffutils dnf-plugins-core findutils gnupg2 less lsof ncurses passwd pinentry procps-ng shadow-utils sudo time util-linux wget vte-profile \
|
|
&& dnf clean packages
|
|
RUN dnf install -y at-spi2-core gtk3 libXScrnSaver libXtst xdg-utils && dnf clean packages
|
|
RUN dnf install -y libglvnd-gles && dnf clean packages
|
|
RUN dnf install -y mesa-dri-drivers mesa-vulkan-drivers vulkan && dnf clean packages
|
|
RUN dnf install -y libva ibus ibus-gtk3 ibus-libs ibus-m17n ibus-setup libmpc libxkbcommon-x11 libxkbfile m17n-db m17n-lib python3-cairo python3-gobject python3-gobject-base python3-gobject-base-noarch setxkbmap xcb-util xcb-util-image xcb-util-keysyms xcb-util-renderutil xcb-util-wm xhost xmodmap xorg-x11-xinit xrdb cpp
|
|
RUN dnf install -y gcr3-base gcr3 gnome-keyring
|
|
RUN dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \
|
|
&& dnf install -y https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
|
RUN dnf install -y libva-intel-driver gstreamer1-plugin-openh264 ffmpeg libva-utils
|
|
RUN dnf install -y dbus-glib pciutils-libs
|
|
RUN dnf -y install fuse
|
|
RUN dnf install -y firefox |