feat: initial MTZ Excel-to-JSON API wrapper

This commit is contained in:
Malin
2026-03-20 10:31:19 +01:00
commit db7c31260b
6 changed files with 125 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py .
EXPOSE 8080
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]