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"]