fix: add missing google api dependencies to Dockerfile and pyproject.toml

This commit is contained in:
Jan Novak
2026-03-02 14:35:09 +01:00
parent cbaab5fb92
commit 786cddba4d

View File

@@ -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/