From e849c340bc88c5f7509404e57c2fb87d24be4bfa Mon Sep 17 00:00:00 2001 From: Jonathan Liberman Date: Sun, 16 Jun 2024 17:14:06 +0300 Subject: [PATCH] docker_typo (#354) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f3757c49..1ae4dc03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,7 @@ COPY backend backend/ COPY --from=frontend /code/frontend/build /code/frontend/dist ARG IS_DEEPCHECKS_OSS -RUN if [ -z "$IS_DEEPCHECKS_OSS" ] ; then pip install -r backend/addon-requirements.txt --compile --no-cache-dir ; fi +RUN if [ -z "$IS_DEEPCHECKS_OSS" ] ; then pip install -q -r backend/addon-requirements.txt --compile --no-cache-dir 2> /dev/null ; fi # Switch to root and install yarn so we can install runtime deps. Node that we # still need yarn to run the plugin-server so we do not remove it.