Files
kube-hunter/Dockerfile
Weston Steimel 22334c67ad update dockerfile and travis
* Update docker image to python 3.7.2 and alpine3.9
* Update travis to test python3.7
* Remove part about using python2 in python3-based environment from
README

Signed-off-by: Weston Steimel <weston.steimel@gmail.com>
2019-03-07 22:36:01 +00:00

17 lines
317 B
Docker

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