feat: add mock Grist server for integration testing
This commit is contained in:
13
tests/integration/mock_grist/Dockerfile
Normal file
13
tests/integration/mock_grist/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user