first commit

This commit is contained in:
2026-05-25 16:45:01 +03:00
commit 61eadfcb0d
5 changed files with 428 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.10-slim
RUN python -m pip install --upgrade pip
RUN pip install Flask
# Установка curl, nano, ping и traceroute
RUN apt-get update && apt-get install -y curl nano iputils-ping traceroute
RUN mkdir /app
COPY ./network_tools.py /app
WORKDIR /app
CMD ["python", "network_tools.py"]