initial commit, migrating from private git server

This commit is contained in:
CrafterPika 2024-10-26 11:58:27 +02:00
commit 1cc52c8424
Signed by: crafterpika
GPG key ID: B4E0BA4B52B201DC
16 changed files with 746 additions and 0 deletions

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM python:3.13
WORKDIR /syscheck_receiver
COPY . /syscheck_receiver
RUN pip install --no-cache-dir -r requirements.txt
RUN mkdir -p /data/reports
EXPOSE 6969/tcp
ENTRYPOINT ["python", "app.py"]