chore: scaffold superoffice connector service for development

This commit is contained in:
Jarvis
2026-02-02 19:42:38 +00:00
parent 71d384770b
commit 36cb4bfbae
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"]