client: Dockerfiles: add commented pipx optional userspace

- `pipx` is no longer required by the base image
  * Package would be required for previous `xlsx2csv` install
This commit is contained in:
2024-08-18 01:54:06 -07:00
parent 37a4a630d9
commit 284dd1d607
2 changed files with 13 additions and 6 deletions

View File

@@ -36,9 +36,13 @@ RUN pacman -Syu \
# Optional userspace (python / ROOT.cern custom metadata analysis)
#
USER @DOCKER_FINANCE_USER@
WORKDIR /home/@DOCKER_FINANCE_USER@
#RUN pacman -Syu \
# python-pipx \
# --noconfirm --disable-download-timeout
RUN pipx install xlsx2csv
#USER @DOCKER_FINANCE_USER@
#WORKDIR /home/@DOCKER_FINANCE_USER@
#RUN pipx install xlsx2csv
# vim: sw=2 sts=2 si ai et

View File

@@ -37,9 +37,12 @@ RUN apt-get install -y \
# Optional userspace (python)
#
USER @DOCKER_FINANCE_USER@
WORKDIR /home/@DOCKER_FINANCE_USER@
#RUN apt-get install -y \
# pipx
RUN pipx install xlsx2csv
#USER @DOCKER_FINANCE_USER@
#WORKDIR /home/@DOCKER_FINANCE_USER@
#RUN pipx install xlsx2csv
# vim: sw=2 sts=2 si ai et