From 64ef1f2a90cfb342d9c6326e5b62b321ea378ee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20de=20Chalendar?= Date: Tue, 30 Apr 2024 00:05:07 +0200 Subject: [PATCH] Error in apt install command --- continuous_integration/Dockerfile-debian12 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continuous_integration/Dockerfile-debian12 b/continuous_integration/Dockerfile-debian12 index 0474c572a..75629453a 100644 --- a/continuous_integration/Dockerfile-debian12 +++ b/continuous_integration/Dockerfile-debian12 @@ -81,7 +81,7 @@ RUN install -D -t /usr/share/apps/lima/packages /src/lima/build/*.deb RUN wget https://github.com/aktau/github-release/releases/download/v0.7.2/linux-amd64-github-release.tar.bz2 -q && tar xjf linux-amd64-github-release.tar.bz2 && cp bin/linux/amd64/github-release /usr/bin # install python packages necessary to use the language resources install script -RUN /bin/bash -c "if [ \"$USE_TENSORFLOW\" = true ] ; then apt install python3-arpy python3-requests python3-tqdm ; fi" +RUN /bin/bash -c "if [ \"$USE_TENSORFLOW\" = true ] ; then apt-get install -y -qq python3-arpy python3-requests python3-tqdm ; fi" # # install English and French UD models RUN /bin/bash -c "if [ \"$USE_TENSORFLOW\" = true ] ; then lima_models.py -l english ; fi"