16 lines
464 B
Docker
16 lines
464 B
Docker
FROM debian:11.2-slim
|
|
|
|
RUN apt-get update && apt-get install -y wget gnupg2 less
|
|
RUN wget -O - https://hwraid.le-vert.net/debian/hwraid.le-vert.net.gpg.key | apt-key add -
|
|
RUN echo deb http://hwraid.le-vert.net/debian bullseye main | tee /etc/apt/sources.list.d/hwraid.list
|
|
RUN apt-get update && apt-get install -y \
|
|
hpacucli \
|
|
ipmitool \
|
|
megacli \
|
|
megaclisas-status \
|
|
redfishtool \
|
|
stress-ng
|
|
|
|
|
|
COPY entrypoint.sh /
|
|
CMD ["/entrypoint.sh"]
|