Merge pull request #85 into master

e58bc57 client: Dockerfiles: ubuntu: fix botan dependency (Aaron Fiore)
dd4100a container: lib_finance: root: remove call via $ROOTSYS (Aaron Fiore)
This commit is contained in:
2024-07-15 16:14:12 -07:00
2 changed files with 2 additions and 4 deletions

View File

@@ -62,9 +62,9 @@ RUN echo "export PATH=\"\$PATH::/usr/local/src/root/bin\"" | tee -a ~/.bash_alia
# docker-finance
USER root
RUN apt-get install -y \
botan \
googletest \
libbenchmark-dev \
libbotan-2-dev \
libcrypto++-dev \
libsodium-dev

View File

@@ -207,11 +207,9 @@ function lib_finance::reports()
function lib_finance::root()
{
[ -z "$ROOTSYS" ] && lib_utils::die_fatal
# NOTE: will automatically load rootlogon.C
pushd "${DOCKER_FINANCE_CONTAINER_REPO}/src/root/macro" 1>/dev/null \
&& "${ROOTSYS}"/bin/root -l
&& root -l
lib_utils::catch $?
}