dockerfile update

This commit is contained in:
2025-04-05 15:48:09 +05:00
parent b40221582d
commit d2987a5917
6 changed files with 46 additions and 5 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.10-alpine3.20
WORKDIR /monitor
COPY monitor.py .
COPY requirements.txt .
RUN pip install --no-cache-dir -r ./requirements.txt
ENTRYPOINT ["python", "monitor.py"]