Commit 8c23e109 by Enkelmann

Updated docker build command

parent 89c388b2
.PHONY: all clean test uninstall
.PHONY: all clean test uninstall docker
all:
dune build
dune install
......@@ -27,3 +27,6 @@ uninstall:
cd plugins/cwe_checker_emulation; make uninstall; cd ../..
cd plugins/cwe_checker_type_inference; make uninstall; cd ../..
cd plugins/cwe_checker_type_inference_print; make uninstall; cd ../..
docker:
./install.sh
#!/usr/bin/env bash
echo "Cleaning up"
rm -rf src/_build
rm -f src/cwe_checker.plugin
make clean
echo "Building docker container"
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