add common/baserow-oauth-stub/Dockerfile (fix connecteur Claude.ai Baserow MCP)

This commit is contained in:
2026-07-28 12:25:43 +00:00
parent 0f11f07567
commit 22b85b76c6
+6
View File
@@ -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"]