ContainersWorkspace/gui-container/Containerfile
Szwendacz d36f0ee9f7
All checks were successful
Build images / build-images-arm64 (push) Successful in 8m31s
Build images / build-images-amd64 (push) Successful in 8m38s
Build images / update-images-manifests (push) Successful in 30s
update histfile env vars
2024-04-18 13:33:58 +02:00

32 lines
620 B
Docker

FROM registry.fedoraproject.org/fedora-minimal
ENV HISTSIZE=10000
ENV HISTTIMEFORMAT="%d/%m/%y %T "
ENV HISTFILESIZE=200000
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" ]