ingress-nginx-helm/test/e2e-image/Dockerfile
Manuel Alejandro de Brito Fontes 78935500eb Update nginx image and go to 1.14.3
2020-05-26 16:47:25 -04:00

22 lines
550 B
Docker

FROM quay.io/kubernetes-ingress-controller/e2e:v05262020-209405940c6 AS BASE
FROM alpine:3.11
RUN apk add -U --no-cache \
ca-certificates \
bash \
curl \
tzdata \
libc6-compat \
openssl
RUN curl -sSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
COPY --from=BASE /go/bin/ginkgo /usr/local/bin/
COPY --from=BASE /usr/local/bin/kubectl /usr/local/bin/
COPY --from=BASE /usr/local/bin/cfssl /usr/local/bin/
COPY --from=BASE /usr/local/bin/cfssljson /usr/local/bin/
COPY . /
CMD [ "/e2e.sh" ]