ContainersWorkspace/gui-container/Containerfile
Maciej Lebiest 6eb7b7a41e
Some checks failed
Build images / build-images-amd64 (push) Failing after 33s
Build images / build-images-arm64 (push) Failing after 44s
Build images / update-images-manifests (push) Has been skipped
migrate some images to mc-fedora-base image
2024-05-03 11:25:31 +02:00

25 lines
380 B
Docker

FROM fogejo.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" ]