ContainersWorkspace/gui-container/Containerfile
Maciej Lebiest b622342887
Some checks failed
Build images / build-images-amd64 (push) Failing after 6m55s
Build images / build-images-arm64 (push) Failing after 8m18s
Build images / update-images-manifests (push) Has been skipped
various updates
2024-03-20 22:17:33 +01:00

32 lines
619 B
Docker

FROM registry.fedoraproject.org/fedora-minimal
ENV HISTSIZE=10000
ENV HISTTIMEFORMAT="%d/%m/%y %T "
ENV HISTFILESIZE=20000
ENV QT_QPA_PLATFORM=wayland
ENV GENERAL_PKGS="\
bash-completion \
procps \
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
RUN echo $'[ -f /usr/share/fzf/shell/key-bindings.bash ] && source /usr/share/fzf/shell/key-bindings.bash' >> /root/.bashrc
ENTRYPOINT [ "/sbin/init" ]