3 Commits
0.03 ... 0.05

Author SHA1 Message Date
Jan Novak
70d6794a3c chore: final release 0.05
All checks were successful
Deploy to K8s / deploy (push) Successful in 11s
Build and Push / build (push) Successful in 5s
2026-03-02 14:37:34 +01:00
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
2 changed files with 6 additions and 2 deletions

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/

View File

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