2022-01-10 04:37:11 +00:00
|
|
|
FROM k8s.gcr.io/ingress-nginx/e2e-test-runner:v20220110-gfd820db46@sha256:273f7d9b1b2297cd96b4d51600e45d932186a1cc79d00d179dfb43654112fe8f AS BASE
|
2019-02-26 15:32:53 +00:00
|
|
|
|
2022-03-31 20:43:04 +00:00
|
|
|
FROM alpine:3.14.4
|
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
|
|
|
|
2019-02-26 15:32:53 +00:00
|
|
|
COPY --from=BASE /go/bin/ginkgo /usr/local/bin/
|
2020-05-31 03:25:56 +00:00
|
|
|
COPY --from=BASE /usr/local/bin/helm /usr/local/bin/
|
2020-09-02 17:03:27 +00:00
|
|
|
COPY --from=BASE /usr/local/bin/kubectl /usr/local/bin/
|
|
|
|
COPY --from=BASE /usr/bin/cfssl /usr/local/bin/
|
|
|
|
COPY --from=BASE /usr/bin/cfssljson /usr/local/bin/
|
2019-02-22 14:03:42 +00:00
|
|
|
|
2020-04-17 02:34:12 +00:00
|
|
|
COPY . /
|
2020-02-25 12:35:44 +00:00
|
|
|
|
2019-02-22 14:03:42 +00:00
|
|
|
CMD [ "/e2e.sh" ]
|