2022-05-24 20:21:24 +01:00
|
|
|
FROM k8s.gcr.io/ingress-nginx/e2e-test-runner:v20220524-g8963ed17e@sha256:4fbcbeebd4c24587699b027ad0f0aa7cd9d76b58177a3b50c228bae8141bcf95 AS BASE
|
2019-02-26 12:32:53 -03:00
|
|
|
|
2022-04-15 16:53:12 -03:00
|
|
|
FROM alpine:3.14.6
|
2019-02-22 11:03:42 -03:00
|
|
|
|
2020-01-04 20:29:49 -03:00
|
|
|
RUN apk add -U --no-cache \
|
2022-04-01 17:07:08 +05:30
|
|
|
ca-certificates \
|
|
|
|
|
bash \
|
|
|
|
|
curl \
|
|
|
|
|
tzdata \
|
|
|
|
|
libc6-compat \
|
|
|
|
|
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-05-30 23:25:56 -04:00
|
|
|
COPY --from=BASE /usr/local/bin/helm /usr/local/bin/
|
2020-09-02 13:03:27 -04: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 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" ]
|