ContainersWorkspace/gui-container/Containerfile

28 lines
409 B
Text
Raw Permalink Normal View History

FROM forgejo.maciej.cloud/pkg/mc-fedora-base
2023-03-18 18:14:16 +00:00
2023-08-13 15:09:19 +00:00
ENV QT_QPA_PLATFORM=wayland
2023-03-18 18:14:16 +00:00
ENV GENERAL_PKGS="\
iproute \
fzf \
wget \
git \
dbus \
dbus-x11 \
2023-07-25 18:39:17 +00:00
strace \
2024-06-06 20:43:39 +00:00
systemd \
NetworkManager \
"
2023-03-18 18:14:16 +00:00
2023-08-13 15:09:19 +00:00
ENV APPS="\
chromium \
2024-03-20 21:30:09 +00:00
firefox"
2023-08-13 15:09:19 +00:00
2023-09-05 18:04:41 +00:00
# install dependencies and basic apps
2024-03-20 21:30:09 +00:00
RUN dnf5 install -y \
2023-03-18 18:14:16 +00:00
${GENERAL_PKGS} \
2023-08-13 15:09:19 +00:00
${APPS} \
2024-03-20 21:30:09 +00:00
&& dnf5 clean all
2023-03-18 18:14:16 +00:00
2023-07-25 18:39:17 +00:00
ENTRYPOINT [ "/sbin/init" ]