zgrab2/docker-runner/Dockerfile
2018-08-17 14:31:31 -04:00

26 lines
646 B
Docker

FROM zgrab2_runner_base:latest
WORKDIR /go/src/github.com/zmap
# Grab the currently-active version of the source
ADD . zgrab2
# This would instead grab it from the source repo
# RUN go-wrapper download github.com/zmap/zgrab2
WORKDIR /go/src/github.com/zmap/zgrab2
RUN go get -f -u -v .
RUN go get -f -u -v -t .
RUN go get -f -u -v $(find ./modules -type d)
RUN go get -f -u -v -t $(find ./modules -type d)
# This should already be executable, but just in case...
RUN chmod a+x ./docker-runner/entrypoint.sh
# Build on the container
RUN make container-clean
CMD []
ENTRYPOINT ["/go/src/github.com/zmap/zgrab2/docker-runner/entrypoint.sh"]