From 786cddba4d6cee6594bfe564e90d2b4abf2c2395 Mon Sep 17 00:00:00 2001 From: Jan Novak Date: Mon, 2 Mar 2026 14:35:09 +0100 Subject: [PATCH] fix: add missing google api dependencies to Dockerfile and pyproject.toml --- build/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index dbf3cce..9d9259c 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -8,7 +8,11 @@ ENV PYTHONUNBUFFERED=1 WORKDIR /app -RUN pip install --no-cache-dir flask +RUN pip install --no-cache-dir \ + flask \ + google-api-python-client \ + google-auth-httplib2 \ + google-auth-oauthlib COPY app.py Makefile ./ COPY scripts/ ./scripts/