1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-21 15:48:06 +00:00

Add image labels

This commit is contained in:
Liz Rice 2017-06-22 16:15:12 +01:00
parent 3b93167c07
commit 74ca02298e
2 changed files with 11 additions and 0 deletions

View File

@ -11,3 +11,14 @@ RUN wget https://raw.githubusercontent.com/aquasecurity/kube-bench/master/cfg/co
WORKDIR /
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT /entrypoint.sh
# Build-time metadata as defined at http://label-schema.org
ARG BUILD_DATE
ARG VCS_REF
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="kube-bench" \
org.label-schema.description="Run the CIS Kubernetes Benchmark tests" \
org.label-schema.url="https://github.com/aquasecurity/kube-bench" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/aquasecurity/kube-bench" \
org.label-schema.schema-version="1.0"

0
hooks/build Normal file
View File