Skip to content

Commit

Permalink
Try prevent build from trying to access everything
Browse files Browse the repository at this point in the history
  • Loading branch information
vsliouniaev committed Jun 6, 2019
1 parent 4472189 commit 6104106
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .cicd/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@ set -eox pipefail

. .cicd/env.sh

docker build . -t $dockerRepo:$vers
rm -rf dockerbuild > /dev/null
mkdir dockerbuild
cp Dockerfile dockerbuild
mv kube-webhook-certgen dockerbuild

docker build -f dockerbuild/Dockerfile dockerbuild -t $dockerRepo:$vers
docker run --rm $dockerRepo:$vers version
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
kube-webhook-certgen
TEST-ALL.xml
TEST-ALL.xml
dockerbuild

0 comments on commit 6104106

Please sign in to comment.