11 lines
154 B
Docker
11 lines
154 B
Docker
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"]
|