7 lines
255 B
Docker
7 lines
255 B
Docker
FROM debian:bullseye-slim
|
|
|
|
RUN apt update && apt -y install gnupg
|
|
COPY hwraid.le-vert.net.gpg.key /root
|
|
RUN apt-key add /root/hwraid.le-vert.net.gpg.key
|
|
COPY hwraid.list /etc/apt/sources.list.d
|
|
RUN apt update && apt -y install hpacucli megacli mpt-status
|