mirror of
https://github.com/selfhosters-cc/container-census.git
synced 2026-05-17 11:29:05 -05:00
9e3559897e
- Added CPU / Memory tracking
10 lines
135 B
Docker
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"]
|