Files
kapow/poc/Dockerfile
pancho horrillo d7ca5d19cf poc: fix path to kapow executable in nmap example Dockerfile
Co-authored-by: César Gallego Rodríguez <cesar.gallego.next@bbva.com>
2019-06-05 11:48:34 +02:00

8 lines
228 B
Docker

FROM python:3.7-alpine
RUN apk update && apk add bash curl coreutils file
RUN pip install pipenv
COPY Pipfile Pipfile.lock /tmp/
RUN cd /tmp && pipenv install --system --deploy
COPY bin/* /usr/bin/
ENTRYPOINT ["/usr/bin/kapow"]