ContainersWorkspace/gui-container/Containerfile
Maciej Lebiest 7c6b259f44
All checks were successful
Build images / build-images-amd64 (push) Successful in 11m11s
Build images / build-images-arm64 (push) Successful in 11m11s
Build images / update-images-manifests (push) Successful in 25s
migrate some images to mc-fedora-base image
2024-05-03 11:29:02 +02:00

25 lines
381 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"
ENV APPS="\
chromium \
firefox"
# install dependencies and basic apps
RUN dnf5 install -y \
${GENERAL_PKGS} \
${APPS} \
&& dnf5 clean all
ENTRYPOINT [ "/sbin/init" ]