ingress-nginx-helm/test/e2e-image/Dockerfile
Manuel Alejandro de Brito Fontes 2f08e87dcf
Update test container images
2021-01-03 16:22:58 -03:00

21 lines
569 B
Docker

FROM k8s.gcr.io/ingress-nginx/e2e-test-runner:v20210103-g47c0cb718@sha256:c463b437115fc632f8e6248aa3ed546f8fd8d99a828bb083f60e025cae85e8c8 AS BASE
FROM alpine:3.12
RUN apk add -U --no-cache \
ca-certificates \
bash \
curl \
tzdata \
libc6-compat \
openssl
COPY --from=BASE /go/bin/ginkgo /usr/local/bin/
COPY --from=BASE /usr/local/bin/helm /usr/local/bin/
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" ]