A full list of pre-defined annotations is available at: https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys Signed-off-by: James Callahan <james@wavesquid.com>
16 lines
313 B
Plaintext
16 lines
313 B
Plaintext
ARG BASE_IMAGE
|
|
|
|
FROM $BASE_IMAGE
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/cert-manager/cert-manager"
|
|
|
|
USER 1000
|
|
|
|
COPY ctl /app/cmd/ctl/ctl
|
|
COPY cert-manager.license /licenses/LICENSE
|
|
COPY cert-manager.licenses_notice /licenses/LICENSES
|
|
|
|
ENTRYPOINT ["/app/cmd/ctl/ctl"]
|
|
|
|
# vim: syntax=dockerfile
|