ingress-nginx-helm/test/e2e-image/Dockerfile

22 lines
588 B
Docker
Raw Normal View History

2022-04-22 02:36:13 +00:00
FROM k8s.gcr.io/ingress-nginx/e2e-test-runner:v20220416-controller-v1.2.0-beta.0-4-g2e1a4790b@sha256:4468eb8cc9aa0ec3971ddf3811efe363e6f8e9082e95b567a5c27d91f89fb1e3 AS BASE
2019-02-26 15:32:53 +00:00
FROM alpine:3.14.6
2020-01-04 23:29:49 +00:00
RUN apk add -U --no-cache \
ca-certificates \
bash \
curl \
tzdata \
libc6-compat \
openssl
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/
COPY . /
CMD [ "/e2e.sh" ]