ingress-nginx-helm/test/e2e-image/Dockerfile
Manuel Alejandro de Brito Fontes 9af24fdf5b
Update go and e2e image (#5289)
2020-03-24 11:42:31 -03:00

28 lines
678 B
Docker

FROM quay.io/kubernetes-ingress-controller/e2e:v03242020-d8ecfb732 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 \
&& helm repo add stable https://kubernetes-charts.storage.googleapis.com \
&& helm repo update
COPY --from=BASE /go/bin/ginkgo /usr/local/bin/
COPY --from=BASE /usr/local/bin/kubectl /usr/local/bin/
COPY e2e.sh /e2e.sh
COPY namespace-overlays /namespace-overlays
COPY wait-for-nginx.sh /
COPY e2e.test /
COPY charts /charts
CMD [ "/e2e.sh" ]