Files
RadMac/app/Dockerfile
2025-03-28 16:13:38 -04:00

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"]