FROM python:3.11-slim RUN apt-get update && apt-get install -y procps RUN pip install psutil COPY app.py /app.py CMD ["python", "/app.py"]