Add customer API stub

This commit is contained in:
2025-12-28 11:24:11 +01:00
parent 19ad13843c
commit ffffa1254e
13 changed files with 137 additions and 1 deletions

17
api-customer/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
ENV FLASK_RUN_PORT=5000
EXPOSE 5000
CMD ["flask", "run"]