FROM python:3.11-slim WORKDIR /app COPY . . RUN apt-get update && apt-get install -y iputils-ping RUN pip install requests CMD ["python", "probe.py"]