Files
kube-hunter/Dockerfile
Grambulf 3556b112a3 Update base image
There is a newer version of the base image
2018-09-01 16:07:29 +02:00

15 lines
265 B
Docker

FROM python:2.7.15-alpine3.8
RUN apk add --update \
linux-headers \
build-base \
tcpdump \
wireshark
RUN mkdir -p /kube-hunter
COPY . /kube-hunter
WORKDIR /kube-hunter
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "kube-hunter.py"]