Add dockerfile for ingress-shim

This commit is contained in:
James Munnelly 2017-11-30 22:56:17 +00:00
parent c3be0f204e
commit 56d3bd5eca

View File

@ -0,0 +1,11 @@
FROM alpine:3.6
RUN apk add --no-cache ca-certificates
ADD cert-manager-ingress-shim_linux_amd64 /usr/bin/ingress-shim
ENTRYPOINT ["/usr/bin/ingress-shim"]
ARG VCS_REF
LABEL org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url="https://github.com/jetstack/cert-manager" \
org.label-schema.license="Apache-2.0"