Commit 8c23e109 by Enkelmann

Updated docker build command

parent 89c388b2
.PHONY: all clean test uninstall .PHONY: all clean test uninstall docker
all: all:
dune build dune build
dune install dune install
...@@ -27,3 +27,6 @@ uninstall: ...@@ -27,3 +27,6 @@ uninstall:
cd plugins/cwe_checker_emulation; make uninstall; cd ../.. cd plugins/cwe_checker_emulation; make uninstall; cd ../..
cd plugins/cwe_checker_type_inference; make uninstall; cd ../.. cd plugins/cwe_checker_type_inference; make uninstall; cd ../..
cd plugins/cwe_checker_type_inference_print; make uninstall; cd ../.. cd plugins/cwe_checker_type_inference_print; make uninstall; cd ../..
docker:
./install.sh
#!/usr/bin/env bash #!/usr/bin/env bash
echo "Cleaning up" echo "Cleaning up"
rm -rf src/_build make clean
rm -f src/cwe_checker.plugin
echo "Building docker container" echo "Building docker container"
docker build --build-arg=http{,s}_proxy --build-arg=HTTP{,S}_PROXY -t cwe-checker . docker build --build-arg=http{,s}_proxy --build-arg=HTTP{,S}_PROXY -t cwe-checker .
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment