From 22b85b76c6d70ae3d478e3b7876fc19090b0a2e2 Mon Sep 17 00:00:00 2001 From: bolbol Date: Tue, 28 Jul 2026 12:25:43 +0000 Subject: [PATCH] add common/baserow-oauth-stub/Dockerfile (fix connecteur Claude.ai Baserow MCP) --- common/baserow-oauth-stub/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 common/baserow-oauth-stub/Dockerfile diff --git a/common/baserow-oauth-stub/Dockerfile b/common/baserow-oauth-stub/Dockerfile new file mode 100644 index 0000000..fc32649 --- /dev/null +++ b/common/baserow-oauth-stub/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.12-alpine +RUN pip install --no-cache-dir starlette uvicorn python-multipart +WORKDIR /app +COPY oauth_app.py . +EXPOSE 8080 +CMD ["uvicorn", "oauth_app:app", "--host", "0.0.0.0", "--port", "8080"]