ContainersWorkspace/gui-container/Containerfile
Maciej Lebiest b8bcac4938
All checks were successful
Build images / build-images-arm64 (push) Successful in 12m21s
Build images / build-images-amd64 (push) Successful in 12m53s
Build images / update-images-manifests (push) Successful in 33s
add NetworkManager to gui-container
2024-06-06 22:43:39 +02:00

27 lines
409 B
Docker

FROM forgejo.maciej.cloud/pkg/mc-fedora-base
ENV QT_QPA_PLATFORM=wayland
ENV GENERAL_PKGS="\
iproute \
fzf \
wget \
git \
dbus \
dbus-x11 \
strace \
systemd \
NetworkManager \
"
ENV APPS="\
chromium \
firefox"
# install dependencies and basic apps
RUN dnf5 install -y \
${GENERAL_PKGS} \
${APPS} \
&& dnf5 clean all
ENTRYPOINT [ "/sbin/init" ]