File: Dockerfile

package info (click to toggle)
scanssh 2.1.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 796 kB
  • sloc: ansic: 4,708; sh: 2,687; makefile: 19
file content (7 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
FROM quay.io/centos/centos:stream9

MAINTAINER Oliver Falk <oliver@linux-kernel.at>

RUN ln -sf /dev/stdout /var/log/messages
RUN dnf -y install epel-release epel-next-release && dnf -y install git-core gcc make libpcap-devel libdnet-devel libevent-devel automake; yum clean all
RUN pushd /var/tmp && git clone https://github.com/ofalk/scanssh.git && pushd scanssh && aclocal && automake && ./configure && make && make install