initial commit

This commit is contained in:
Anry Das
2025-02-16 12:38:35 +02:00
commit 954f607c5a
21 changed files with 1793 additions and 0 deletions

17
Dockerfile Executable file
View File

@@ -0,0 +1,17 @@
FROM python:3.13-alpine
MAINTAINER -=:dAs:=-
RUN apk add gcc python3-dev musl-dev linux-headers
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY *.py .
COPY metrics/*.py metrics/
EXPOSE 15200
CMD [ "python", "./main.py" ]