mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +00:00
8 lines
333 B
Docker
8 lines
333 B
Docker
|
FROM almalinux:8
|
||
|
RUN ["yum", "-y", "update"]
|
||
|
RUN ["rpm", "-ivh", "https://hpc.lenovo.com/yum/latest/el8/x86_64/lenovo-hpc-yum-1-1.x86_64.rpm"]
|
||
|
RUN ["yum", "-y", "install", "lenovo-confluent", "tftp-server", "openssh-clients", "openssl", "vim-enhanced", "iproute"]
|
||
|
ADD runconfluent.sh /bin/
|
||
|
CMD ["/bin/bash", "/bin/runconfluent.sh"]
|
||
|
|