client: Dockerfiles: resolve apt CLI warning

This commit is contained in:
2024-07-11 16:42:30 -07:00
parent c8a2af1290
commit f2df54d3cc
7 changed files with 20 additions and 20 deletions

View File

@@ -22,7 +22,7 @@
USER root
# ROOT.cern dependencies (regardless of building or not)
RUN apt install -y \
RUN apt-get install -y \
binutils \
cmake \
dpkg-dev \
@@ -37,7 +37,7 @@ RUN apt install -y \
python3
# ROOT.cern pre-compiled installation
RUN apt install -y curl
RUN apt-get install -y curl
USER builder
WORKDIR /usr/local/src
RUN curl --location -O "https://root.cern/download/root_v6.32.02.Linux-ubuntu24.04-x86_64-gcc13.2.tar.gz"
@@ -61,7 +61,7 @@ RUN echo "export PATH=\"\$PATH::/usr/local/src/root/bin\"" | tee -a ~/.bash_alia
# docker-finance
USER root
RUN apt install -y \
RUN apt-get install -y \
botan \
googletest \
libbenchmark-dev \