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

22 lines
569 B
Docker
Raw Normal View History

2020-09-04 15:44:04 +00:00
FROM k8s.gcr.io/ingress-nginx/e2e-test-runner:v20200904-gc2884a3da@sha256:f2de204dafb3951b974a53f7a4e9cc43b62b93c99b95edcb7a65afdc1d4f0bf4 AS BASE
2019-02-26 15:32:53 +00:00
2020-05-31 03:25:56 +00:00
FROM alpine:3.12
2020-01-04 23:29:49 +00:00
RUN apk add -U --no-cache \
ca-certificates \
bash \
2019-02-26 15:32:53 +00:00
curl \
2020-01-04 23:29:49 +00:00
tzdata \
libc6-compat \
2020-01-04 23:29:49 +00:00
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" ]