feat: add mock Grist server for integration testing

This commit is contained in:
2025-12-30 11:34:21 -05:00
parent 69ec6ef0e2
commit 7acd602ffd
4 changed files with 232 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
FROM python:3.14-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY server.py .
ENV PORT=8484
EXPOSE 8484
CMD ["python", "server.py"]