addded services

This commit is contained in:
2026-07-15 13:29:08 +03:00
parent ec33cd5398
commit 9ebbb83bdb
105 changed files with 10833 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends gcc make libc6-dev && rm -rf /var/lib/apt/lists/*
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY src/ /app/
RUN make -C /app/validator
CMD ["python", "app.py"]