13 lines
227 B
Docker
13 lines
227 B
Docker
FROM python:3.9-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
RUN apt-get update && apt-get install -y iputils-ping telnet # Add these lines
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "app.py"] |