updated skeleton with true data

This commit is contained in:
2025-12-09 08:40:18 +01:00
parent 61e6644158
commit 8cd91b6f22
27 changed files with 1193 additions and 14 deletions

View File

@ -1 +1,11 @@
FROM python:3.11-slim AS builder
WORKDIR /app
COPY requirements.gateway.txt .
RUN pip install -r requirements.gateway.txt
COPY . .
FROM python:3.11-slim
WORKDIR /app
COPY --from=builder /usr/local /usr/local
COPY . .
CMD ["python","main.py"]