mirror of
https://github.com/aquasecurity/kube-bench.git
synced 2024-10-31 20:39:14 +00:00
7 lines
246 B
Bash
Executable File
7 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# $IMAGE_NAME var is injected into the build so the tag is correct.
|
|
docker build --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
|
--build-arg VCS_REF=`git rev-parse --short HEAD` \
|
|
-t $IMAGE_NAME .
|