21 lines
479 B
Makefile
21 lines
479 B
Makefile
|
|
||
|
image-w3af:
|
||
|
docker build \
|
||
|
--build-arg=HTTP_PROXY=$(HTTP_PROXY) \
|
||
|
--build-arg=HTTPS_PROXY=$(HTTPS_PROXY) \
|
||
|
--build-arg=http_proxy=$(http_proxy) \
|
||
|
--build-arg=https_proxy=$(https_proxy) \
|
||
|
-t jenkins-w3af \
|
||
|
./resources/com/cadoles/w3af
|
||
|
|
||
|
interactive-w3af:
|
||
|
docker run \
|
||
|
-it --rm \
|
||
|
-e HTTP_PROXY=$(HTTP_PROXY) \
|
||
|
-e HTTPS_PROXY=$(HTTPS_PROXY) \
|
||
|
-e http_proxy=$(http_proxy) \
|
||
|
-e https_proxy=$(https_proxy) \
|
||
|
jenkins-w3af:latest \
|
||
|
/bin/sh
|
||
|
|
||
|
.PHONY: image-w3af
|