2020-07-15 14:19:03 -04:00
|
|
|
FROM us.gcr.io/k8s-artifacts-prod/ingress-nginx/e2e-test-runner@sha256:bf31d6f13984ef0818312f9247780e234a6d50322e362217dabe4b3299f202ef AS BASE
|
2019-02-26 12:32:53 -03:00
|
|
|
|
2020-05-30 23:25:56 -04:00
|
|
|
FROM alpine:3.12
|
2019-02-22 11:03:42 -03:00
|
|
|
|
2020-01-04 20:29:49 -03:00
|
|
|
RUN apk add -U --no-cache \
|
2019-02-22 11:03:42 -03:00
|
|
|
ca-certificates \
|
|
|
|
|
bash \
|
2019-02-26 12:32:53 -03:00
|
|
|
curl \
|
2020-01-04 20:29:49 -03:00
|
|
|
tzdata \
|
2020-01-09 00:58:16 -03:00
|
|
|
libc6-compat \
|
2020-01-04 20:29:49 -03:00
|
|
|
openssl
|
2019-02-22 11:03:42 -03:00
|
|
|
|
2019-02-26 12:32:53 -03:00
|
|
|
COPY --from=BASE /go/bin/ginkgo /usr/local/bin/
|
2020-01-04 20:29:49 -03:00
|
|
|
COPY --from=BASE /usr/local/bin/kubectl /usr/local/bin/
|
2020-04-17 13:03:33 -04:00
|
|
|
COPY --from=BASE /usr/local/bin/cfssl /usr/local/bin/
|
2020-05-30 23:25:56 -04:00
|
|
|
COPY --from=BASE /usr/local/bin/helm /usr/local/bin/
|
2020-04-17 13:03:33 -04:00
|
|
|
COPY --from=BASE /usr/local/bin/cfssljson /usr/local/bin/
|
2019-02-22 11:03:42 -03:00
|
|
|
|
2020-04-16 22:34:12 -04:00
|
|
|
COPY . /
|
2020-02-25 09:35:44 -03:00
|
|
|
|
2019-02-22 11:03:42 -03:00
|
|
|
CMD [ "/e2e.sh" ]
|