Files
container-census/Dockerfile.test-cpu
Self Hosters 9e3559897e Version 1.3.0
- Added CPU / Memory tracking
2025-10-30 14:37:01 -04:00

10 lines
135 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY test-cpu-load.py .
RUN chmod +x test-cpu-load.py
CMD ["python3", "-u", "test-cpu-load.py"]