The SIG list generation tool supports SELinux
According to the [Docker documentation](https://docs.docker.com/engine/admin/volumes/bind-mounts/#configure-the-selinux-label) additional options are required for bind mounts on systems where SELinux is enabled.
This commit is contained in:
parent
0dc8be8436
commit
4cf32c0472
2
Makefile
2
Makefile
|
@ -10,7 +10,7 @@ build-image:
|
|||
docker build -q -t $(IMAGE_NAME) -f generator/Dockerfile generator
|
||||
|
||||
generate: build-image
|
||||
docker run --rm -e WG -e SIG -v $(shell pwd):/go/src/app/generated $(IMAGE_NAME) app
|
||||
docker run --rm -e WG -e SIG -v $(shell pwd):/go/src/app/generated:Z $(IMAGE_NAME) app
|
||||
|
||||
verify:
|
||||
@hack/verify.sh
|
||||
|
|
Loading…
Reference in New Issue