forked from xeol-io/xeol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.debug
25 lines (19 loc) · 896 Bytes
/
Dockerfile.debug
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM gcr.io/distroless/static-debian11:debug@sha256:c66a6ecb5aa7704a68c89d3ead1398adc7f16e214dda5f5f8e5d44351bcbf67d
# create the /tmp dir, which is needed for image content cache
WORKDIR /tmp
COPY xeol /
ARG BUILD_DATE
ARG BUILD_VERSION
ARG VCS_REF
ARG VCS_URL
LABEL org.opencontainers.image.created=$BUILD_DATE
LABEL org.opencontainers.image.title="xeol"
LABEL org.opencontainers.image.description="An EOL package scanner for container images, systems, and SBOMs"
LABEL org.opencontainers.image.source=$VCS_URL
LABEL org.opencontainers.image.revision=$VCS_REF
LABEL org.opencontainers.image.vendor="noqcks"
LABEL org.opencontainers.image.version=$BUILD_VERSION
LABEL org.opencontainers.image.licenses="Apache-2.0"
LABEL io.artifacthub.package.readme-url="https://raw.githubusercontent.com/noqcks/xeol/main/README.md"
LABEL io.artifacthub.package.license="Apache-2.0"
ENTRYPOINT ["/xeol"]