File: Dockerfile.centos

package info (click to toggle)
iptables-netflow 2.6-4%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,196 kB
  • sloc: ansic: 6,799; sh: 871; ruby: 619; makefile: 236
file content (17 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# https://hub.docker.com/_/centos/

ARG OS_VERSION

FROM centos:$OS_VERSION

RUN yum -y install \
    gcc \
    make \
    kernel-devel \
    iptables-devel \
    net-snmp \
    net-snmp-devel \
    which

CMD ./configure --kdir=$(echo /usr/src/kernels/*) && make all