2020-04-14 18:10:32 +00:00
|
|
|
FROM quay.io/kubernetes-ingress-controller/e2e:v04142020-0257068b9 AS BASE
|
2019-02-26 15:32:53 +00:00
|
|
|
|
2020-01-04 23:29:49 +00:00
|
|
|
FROM alpine:3.11
|
2019-02-22 14:03:42 +00:00
|
|
|
|
2020-01-04 23:29:49 +00:00
|
|
|
RUN apk add -U --no-cache \
|
2019-02-22 14:03:42 +00:00
|
|
|
ca-certificates \
|
|
|
|
bash \
|
2019-02-26 15:32:53 +00:00
|
|
|
curl \
|
2020-01-04 23:29:49 +00:00
|
|
|
tzdata \
|
2020-01-09 03:58:16 +00:00
|
|
|
libc6-compat \
|
2020-01-04 23:29:49 +00:00
|
|
|
openssl
|
2019-02-22 14:03:42 +00:00
|
|
|
|
2020-02-16 14:58:37 +00:00
|
|
|
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
|
|
|
|
|
2019-02-26 15:32:53 +00:00
|
|
|
COPY --from=BASE /go/bin/ginkgo /usr/local/bin/
|
2020-01-04 23:29:49 +00:00
|
|
|
COPY --from=BASE /usr/local/bin/kubectl /usr/local/bin/
|
2019-02-22 14:03:42 +00:00
|
|
|
|
2019-02-26 15:32:53 +00:00
|
|
|
COPY e2e.sh /e2e.sh
|
2019-05-15 13:01:48 +00:00
|
|
|
COPY namespace-overlays /namespace-overlays
|
2020-02-16 14:58:37 +00:00
|
|
|
|
2019-02-26 15:32:53 +00:00
|
|
|
COPY wait-for-nginx.sh /
|
|
|
|
COPY e2e.test /
|
2019-02-22 14:03:42 +00:00
|
|
|
|
2020-02-25 12:35:44 +00:00
|
|
|
COPY charts /charts
|
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
CMD [ "/e2e.sh" ]
|