create a service to log monitor from guacd

This commit is contained in:
root
2024-06-04 22:45:10 +00:00
parent 77f1ee32d3
commit 661cbdf77f
3 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
FROM python:3.8-slim
WORKDIR /app
COPY log_service.py /app/log_service.py
RUN pip install docker bottle
CMD ["python", "log_service.py"]