ContainersWorkspace/gui-container/Containerfile

26 lines
380 B
Text
Raw Normal View History

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