Test / Dockerfile
Nt-animes's picture
Update Dockerfile
12f857b verified
raw
history blame contribute delete
142 Bytes
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"]