chore: scaffold superoffice connector service for development

This commit is contained in:
Jarvis
2026-02-02 19:42:38 +00:00
parent 5d7d0d403e
commit 232ee5b961
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "main.py"]