From a4eb23280f0e7773cb3e3c5d76d302945b7da6b3 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Thu, 15 Jun 2023 22:49:13 +0200 Subject: [PATCH] quiet pip install output --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 77f7a92..c72a35d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,5 +11,5 @@ FROM python:3.11-slim-bookworm as final RUN apt-get update && apt-get install -y firefox-esr COPY --from=downloader /app/geckodriver /usr/local/bin/geckodriver ARG OFX_VERSION -RUN pip --disable-pip-version-check install ofx-processor==$OFX_VERSION +RUN pip --disable-pip-version-check install --quiet ofx-processor==$OFX_VERSION CMD ["ynab", "lcl", "--download"]