3 Commits

Author SHA1 Message Date
Jan Novak
ed5c9bf173 chore: bump version to 0.04 after Docker fix
All checks were successful
Build and Push / build (push) Successful in 26s
2026-03-02 14:35:22 +01:00
Jan Novak
786cddba4d fix: add missing google api dependencies to Dockerfile and pyproject.toml 2026-03-02 14:35:09 +01:00
Jan Novak
cbaab5fb92 chore: bump version to 0.03
All checks were successful
Build and Push / build (push) Successful in 8s
2026-03-02 14:31:23 +01:00
2 changed files with 6 additions and 2 deletions

View File

@@ -8,7 +8,11 @@ ENV PYTHONUNBUFFERED=1
WORKDIR /app 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 app.py Makefile ./
COPY scripts/ ./scripts/ COPY scripts/ ./scripts/

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "fuj-management" name = "fuj-management"
version = "0.02" version = "0.04"
description = "Management tools for FUJ (Frisbee Ultimate Jablonec)" description = "Management tools for FUJ (Frisbee Ultimate Jablonec)"
dependencies = [ dependencies = [
"flask>=3.1.3", "flask>=3.1.3",