client: Dockerfiles: comment all optional userspace packages

- Shouldn't be applied to base image by default
- Also removes `mc` from Ubuntu image as `mc` (more useful client-side)
This commit is contained in:
2024-08-18 02:01:06 -07:00
parent 284dd1d607
commit b4fcc2ae0d
2 changed files with 16 additions and 16 deletions

View File

@@ -23,14 +23,17 @@
# Optional userspace # Optional userspace
# #
USER root #USER root
RUN pacman -Syu \ #RUN pacman -Syu \
calc \ # calc \
emacs-nox \ # less \
less \ # --noconfirm --disable-download-timeout
nano \
--noconfirm --disable-download-timeout #RUN pacman -Syu \
# emacs-nox \
# nano \
# --noconfirm --disable-download-timeout
# #
# Optional userspace (python / ROOT.cern custom metadata analysis) # Optional userspace (python / ROOT.cern custom metadata analysis)

View File

@@ -23,15 +23,12 @@
# Optional userspace # Optional userspace
# #
USER root #USER root
#RUN apt-get update -y
RUN apt-get update -y #RUN apt-get install -y \
# calc \
RUN apt-get install -y \ # emacs-nox \
calc \ # nano
emacs-nox \
mc \
nano
# #
# Optional userspace (python) # Optional userspace (python)